diff options
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 | ||||
-rw-r--r-- | phpBB/memberlist.php | 1 |
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'), |