Merge "Hard-deprecate wfCountDown()"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Fri, 20 Apr 2018 23:41:06 +0000 (23:41 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 20 Apr 2018 23:41:06 +0000 (23:41 +0000)
includes/GlobalFunctions.php

index 1a3f50a..be6109c 100644 (file)
@@ -3035,6 +3035,7 @@ function wfWaitForSlaves(
  * @param int $seconds
  */
 function wfCountDown( $seconds ) {
+       wfDeprecated( __FUNCTION__, '1.31' );
        for ( $i = $seconds; $i >= 0; $i-- ) {
                if ( $i != $seconds ) {
                        echo str_repeat( "\x08", strlen( $i + 1 ) );