From: Magnus Manske Date: Tue, 3 Aug 2004 20:01:52 +0000 (+0000) Subject: bug 964201 fix X-Git-Tag: 1.5.0alpha1~2528 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=6cd83364ec864e3027ba096ea81639fc9e886354;p=lhc%2Fweb%2Fwiklou.git bug 964201 fix --- 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 ); }