From: Alexandre Emsenhuber Date: Thu, 16 Feb 2012 12:59:48 +0000 (+0000) Subject: Added wfDeprecated() call to wfSpecialList() now there no more calls to that function... X-Git-Tag: 1.31.0-rc.0~24672 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=e6fbfecf46bbf45f1ccc4eacf76427a94ae893b9;p=lhc%2Fweb%2Fwiklou.git Added wfDeprecated() call to wfSpecialList() now there no more calls to that function in core or extensions --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 5dbcbb103f..77820eaad7 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1931,6 +1931,8 @@ function wfViewPrevNext( $offset, $limit, $link, $query = '', $atend = false ) { * @deprecated since 1.19; use Language::specialList() instead */ function wfSpecialList( $page, $details, $oppositedm = true ) { + wfDeprecated( __METHOD__, '1.19' ); + global $wgLang; return $wgLang->specialList( $page, $details, $oppositedm ); }