From: Raimond Spekking Date: Thu, 17 Jun 2010 07:32:39 +0000 (+0000) Subject: Add the current limit (manually changed by a user) from the query string to avoid... X-Git-Tag: 1.31.0-rc.0~36487 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=ad375dddafd44be2ce8657b1b1f5370a597e52ab;p=lhc%2Fweb%2Fwiklou.git 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 --- 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; }