Deprecate wfCheckLimits(), nothing calls this anymore
Some old things in SVN called it, hence the deprecation. Change-Id: Iefabd1a6bee261a393f3b1af083c8a075abf1e48
This commit is contained in:
parent
8cea24e472
commit
85d7e6203f
1 changed files with 2 additions and 0 deletions
|
|
@ -2111,9 +2111,11 @@ function wfClientAcceptsGzip( $force = false ) {
|
|||
* @param int $deflimit Default limit if none supplied
|
||||
* @param string $optionname Name of a user preference to check against
|
||||
* @return array
|
||||
* @deprecated since 1.24, just call WebRequest::getLimitOffset() directly
|
||||
*/
|
||||
function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' ) {
|
||||
global $wgRequest;
|
||||
wfDeprecated( __METHOD__, '1.24' );
|
||||
return $wgRequest->getLimitOffset( $deflimit, $optionname );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue