From: Sam Reed Date: Fri, 6 May 2011 20:43:32 +0000 (+0000) Subject: Add wfDeprecated( __METHOD ); to one method marked for 1.19 X-Git-Tag: 1.31.0-rc.0~30373 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=f16b028b11945e9a43220e37abe0d5ef0a928569;p=lhc%2Fweb%2Fwiklou.git Add wfDeprecated( __METHOD ); to one method marked for 1.19 --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 48f879b5bb..f083d8b0b4 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -3289,6 +3289,7 @@ function wfWaitForSlaves( $maxLag = false, $wiki = false ) { * @deprecated Warnings in 1.19, removal in 1.20 */ function wfOut( $s ) { + wfDeprecated( __METHOD ); global $wgCommandLineMode; if ( $wgCommandLineMode && !defined( 'MEDIAWIKI_INSTALL' ) ) { echo $s;