From 6cd83364ec864e3027ba096ea81639fc9e886354 Mon Sep 17 00:00:00 2001 From: Magnus Manske Date: Tue, 3 Aug 2004 20:01:52 +0000 Subject: [PATCH] bug 964201 fix --- includes/GlobalFunctions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index c06fedea7e..c39490d4b6 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -725,7 +725,9 @@ function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' ) { $offset = $wgRequest->getInt( 'offset', 0 ); if( $offset < 0 ) $offset = 0; - if( $offset > 65000 ) $offset = 65000; # do we need a max? what? + +#No, we don't really need a max... +# if( $offset > 65000 ) $offset = 65000; # do we need a max? what? return array( $limit, $offset ); } -- 2.20.1