Increase limit from 500 to 5000 per live hack committed to wmf-deployment in r53208
authorBrion Vibber <brion@users.mediawiki.org>
Mon, 14 Sep 2009 21:26:04 +0000 (21:26 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Mon, 14 Sep 2009 21:26:04 +0000 (21:26 +0000)
includes/specials/SpecialRecentchanges.php

index c78abd0..85ace3c 100644 (file)
@@ -55,7 +55,7 @@ class SpecialRecentChanges extends SpecialPage {
                        $this->parseParameters( $parameters, $opts );
                }
 
-               $opts->validateIntBounds( 'limit', 0, 500 );
+               $opts->validateIntBounds( 'limit', 0, 5000 );
                return $opts;
        }