From: Chad Horohoe Date: Thu, 7 Nov 2013 00:09:29 +0000 (-0800) Subject: Remove unused function X-Git-Tag: 1.31.0-rc.0~18263 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=f3d6db5843edfcac3f8cd06baa1464660a8631c2;p=lhc%2Fweb%2Fwiklou.git Remove unused function Change-Id: I51975357c91295f757532ff219a8db8ca939ba0c --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index e93a105b5e..f3d6cf6d5d 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -3844,21 +3844,6 @@ function wfWaitForSlaves( $maxLag = false, $wiki = false, $cluster = false ) { } } -/** - * Used to be used for outputting text in the installer/updater - * @deprecated since 1.18, warnings in 1.18, remove in 1.20 - */ -function wfOut( $s ) { - wfDeprecated( __FUNCTION__, '1.18' ); - global $wgCommandLineMode; - if ( $wgCommandLineMode ) { - echo $s; - } else { - echo htmlspecialchars( $s ); - } - flush(); -} - /** * Count down from $n to zero on the terminal, with a one-second pause * between showing each number. For use in command-line scripts.