From f16b028b11945e9a43220e37abe0d5ef0a928569 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Fri, 6 May 2011 20:43:32 +0000 Subject: [PATCH] Add wfDeprecated( __METHOD ); to one method marked for 1.19 --- includes/GlobalFunctions.php | 1 + 1 file changed, 1 insertion(+) 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; -- 2.20.1