From ad375dddafd44be2ce8657b1b1f5370a597e52ab Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Thu, 17 Jun 2010 07:32:39 +0000 Subject: [PATCH] Add the current limit (manually changed by a user) from the query string to avoid that the limit is lost after clicking Go next time --- includes/Pager.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/includes/Pager.php b/includes/Pager.php index a381fd7f7b..a90867c59d 100644 --- a/includes/Pager.php +++ b/includes/Pager.php @@ -986,7 +986,14 @@ abstract class TablePager extends IndexPager { */ function getLimitSelect() { global $wgLang; - $s = ""; + $s .= Html::closeElement( 'select' ); return $s; } -- 2.20.1