From e6fbfecf46bbf45f1ccc4eacf76427a94ae893b9 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 16 Feb 2012 12:59:48 +0000 Subject: [PATCH] Added wfDeprecated() call to wfSpecialList() now there no more calls to that function in core or extensions --- includes/GlobalFunctions.php | 2 ++ 1 file changed, 2 insertions(+) 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 ); } -- 2.20.1