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 @@
  • [Change] Allow setting birth year to current year.
  • [Fix] Display coloured username of last poster in list of subscribed forums (prosilver).
  • [Fix] Added missing UCP language string NO_AUTH_READ_HOLD_MESSAGE.
  • +
  • [Fix] Do not jump back to page 1 when hiding member search in memberlist. (#32515 - Patch by paul)
  • 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'),