From: Brion Vibber Date: Mon, 14 Sep 2009 21:26:04 +0000 (+0000) Subject: Increase limit from 500 to 5000 per live hack committed to wmf-deployment in r53208 X-Git-Tag: 1.31.0-rc.0~39734 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=65617df68776de47de70829779581998456a8f61;p=lhc%2Fweb%2Fwiklou.git Increase limit from 500 to 5000 per live hack committed to wmf-deployment in r53208 --- diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index c78abd0528..85ace3cb86 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -55,7 +55,7 @@ class SpecialRecentChanges extends SpecialPage { $this->parseParameters( $parameters, $opts ); } - $opts->validateIntBounds( 'limit', 0, 500 ); + $opts->validateIntBounds( 'limit', 0, 5000 ); return $opts; }