From 0449a4030786111b71fd04327c9291268fc31bc0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 13 Mar 2008 20:47:44 +0000 Subject: [PATCH] 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 --- includes/SpecialNewpages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.20.1