diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2009-06-26 11:34:27 +0000 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2009-06-26 11:34:27 +0000 |
commit | 8f60b757b85579407bd1ef07a59b85b1a791e43c (patch) | |
tree | 1bb91c39dc2863129957b562a1802184af665195 /phpBB | |
parent | e77f7e2a81bb870b853146dbd10424ff7fa283ce (diff) | |
download | forums-8f60b757b85579407bd1ef07a59b85b1a791e43c.tar forums-8f60b757b85579407bd1ef07a59b85b1a791e43c.tar.gz forums-8f60b757b85579407bd1ef07a59b85b1a791e43c.tar.bz2 forums-8f60b757b85579407bd1ef07a59b85b1a791e43c.tar.xz forums-8f60b757b85579407bd1ef07a59b85b1a791e43c.zip |
Change bug #47425 - IP data lost on pagination
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9684 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/memberlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index 08451ac6b2..ccd215c590 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -1247,7 +1247,7 @@ switch ($mode) 'joined' => array('joined', ''), 'active' => array('active', ''), 'count' => (request_var('count', '') !== '') ? array('count', 0) : array('count', ''), - 'ipdomain' => array('ip', ''), + 'ip' => array('ip', ''), 'first_char' => array('first_char', ''), ); |