Removed wfDeprecated() call from LogPage::logName() and LogPage::logHeader(); they...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 18 Feb 2012 13:21:01 +0000 (13:21 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 18 Feb 2012 13:21:01 +0000 (13:21 +0000)
includes/logging/LogPage.php

index 3951a04..193ff52 100644 (file)
@@ -175,7 +175,6 @@ class LogPage {
         * @deprecated in 1.19, warnings in 1.21. Use getName()
         */
        public static function logName( $type ) {
-               wfDeprecated( __METHOD__, '1.19' );
                global $wgLogNames;
 
                if( isset( $wgLogNames[$type] ) ) {
@@ -195,7 +194,6 @@ class LogPage {
         * @deprecated in 1.19, warnings in 1.21. Use getDescription()
         */
        public static function logHeader( $type ) {
-               wfDeprecated( __METHOD__, '1.19' );
                global $wgLogHeaders;
                return wfMsgExt( $wgLogHeaders[$type], array( 'parseinline' ) );
        }