Deprecate wfCheckLimits(), nothing calls this anymore

Some old things in SVN called it, hence the deprecation.

Change-Id: Iefabd1a6bee261a393f3b1af083c8a075abf1e48
This commit is contained in:
Chad Horohoe 2014-06-25 11:22:39 -07:00
parent 8cea24e472
commit 85d7e6203f

View file

@ -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 );
}