From: Domas Mituzas Date: Tue, 24 Mar 2009 10:44:24 +0000 (+0000) Subject: change limit to reflect one in interface. :) X-Git-Tag: 1.31.0-rc.0~42396 X-Git-Url: https://git.cyclocoop.org/?a=commitdiff_plain;h=9477c9d8b30551f2accc8dbaa8fefdc9b484a293;p=lhc%2Fweb%2Fwiklou.git change limit to reflect one in interface. :) --- diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index 2fd7fe4a10..bc7b1e96f3 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, 5000 ); + $opts->validateIntBounds( 'limit', 0, 500 ); return $opts; }