From f3d6db5843edfcac3f8cd06baa1464660a8631c2 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 6 Nov 2013 16:09:29 -0800 Subject: [PATCH] Remove unused function Change-Id: I51975357c91295f757532ff219a8db8ca939ba0c --- includes/GlobalFunctions.php | 15 --------------- 1 file changed, 15 deletions(-) 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. -- 2.20.1