aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2008-09-05 18:54:49 +0000
committerChris Smith <toonarmy@phpbb.com>2008-09-05 18:54:49 +0000
commitd1606c5f78503caa0d0276ea2a34b7d21a715dcf (patch)
tree612ac8b2d29654c539968496a405488fc022bf31 /phpBB
parent9b20a520e3414bd51c58ab593fbf3412afa52720 (diff)
downloadforums-d1606c5f78503caa0d0276ea2a34b7d21a715dcf.tar
forums-d1606c5f78503caa0d0276ea2a34b7d21a715dcf.tar.gz
forums-d1606c5f78503caa0d0276ea2a34b7d21a715dcf.tar.bz2
forums-d1606c5f78503caa0d0276ea2a34b7d21a715dcf.tar.xz
forums-d1606c5f78503caa0d0276ea2a34b7d21a715dcf.zip
Do not jump back to page 1 when hiding member search in memberlist. Closes #32515
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8830 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/docs/CHANGELOG.html1
-rw-r--r--phpBB/memberlist.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index c3acee8456..16aae3f7b8 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -110,6 +110,7 @@
<li>[Change] Allow setting birth year to current year.</li>
<li>[Fix] Display coloured username of last poster in list of subscribed forums (prosilver).</li>
<li>[Fix] Added missing UCP language string <em>NO_AUTH_READ_HOLD_MESSAGE</em>.</li>
+ <li>[Fix] Do not jump back to page 1 when hiding member search in memberlist. (#32515 - Patch by paul)</li>
</ul>
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php
index a3a68a0500..e87cffcfe6 100644
--- a/phpBB/memberlist.php
+++ b/phpBB/memberlist.php
@@ -1212,6 +1212,7 @@ switch ($mode)
// We do not use request_var() here directly to save some calls (not all variables are set)
$check_params = array(
+ 'start' => array('start', 0),
'g' => array('g', 0),
'sk' => array('sk', $default_key),
'sd' => array('sd', 'a'),