From: Brion Vibber Date: Thu, 13 Mar 2008 20:47:44 +0000 (+0000) Subject: tweak offset limit up to 20k for now; en.wikipedia maintenance dudes. :P X-Git-Tag: 1.31.0-rc.0~49131 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=0449a4030786111b71fd04327c9291268fc31bc0;p=lhc%2Fweb%2Fwiklou.git tweak offset limit up to 20k for now; en.wikipedia maintenance dudes. :P ideally we'll change this to use a nice date-based offset --- diff --git a/includes/SpecialNewpages.php b/includes/SpecialNewpages.php index 16b5642638..741aad1f0c 100644 --- a/includes/SpecialNewpages.php +++ b/includes/SpecialNewpages.php @@ -45,7 +45,7 @@ class NewPagesPage extends QueryPage { if( $shownavigation ) { // Some hopefully reasonable limits... $max = array( - /* int */ 'offset' => 5000, + /* int */ 'offset' => 20000, /* int */ 'limit' => 500, ); } else {