Added wfDeprecated() call to wfSpecialList() now there no more calls to that function...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 16 Feb 2012 12:59:48 +0000 (12:59 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 16 Feb 2012 12:59:48 +0000 (12:59 +0000)
includes/GlobalFunctions.php

index 5dbcbb1..77820ea 100644 (file)
@@ -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 );
 }