Hard-deprecate wfCountDown()
Deprecated in 1.31, the only callers left are in BlueSpice. Change-Id: I3d59b0967c161eff0190a6f577e571230a7e7a2f
This commit is contained in:
parent
f4668d6c12
commit
686de25786
1 changed files with 1 additions and 0 deletions
|
|
@ -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 ) );
|
||||
|
|
|
|||
Loading…
Reference in a new issue