https://www.mediawiki.org/wiki/Special:Code/MediaWiki/111822

Revision: 111822
Author:   ialex
Date:     2012-02-18 13:21:01 +0000 (Sat, 18 Feb 2012)
Log Message:
-----------
Removed wfDeprecated() call from LogPage::logName() and LogPage::logHeader(); 
they are still widely used including in core.

Modified Paths:
--------------
    trunk/phase3/includes/logging/LogPage.php

Modified: trunk/phase3/includes/logging/LogPage.php
===================================================================
--- trunk/phase3/includes/logging/LogPage.php   2012-02-18 12:10:18 UTC (rev 
111821)
+++ trunk/phase3/includes/logging/LogPage.php   2012-02-18 13:21:01 UTC (rev 
111822)
@@ -175,7 +175,6 @@
         * @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 @@
         * @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' ) );
        }


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to