Remove unused function
authorChad Horohoe <chadh@wikimedia.org>
Thu, 7 Nov 2013 00:09:29 +0000 (16:09 -0800)
committerChad Horohoe <chadh@wikimedia.org>
Thu, 7 Nov 2013 00:09:42 +0000 (16:09 -0800)
Change-Id: I51975357c91295f757532ff219a8db8ca939ba0c

includes/GlobalFunctions.php

index e93a105..f3d6cf6 100644 (file)
@@ -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.