Seems to have broken a bunch of stuff. Don't commit giant non-critical changes that break Setup.php and all maint scripts. Thanks!
15 lines
199 B
PHP
15 lines
199 B
PHP
<?php
|
|
/**
|
|
* @see wfWaitForSlaves()
|
|
* @file
|
|
* @ingroup Maintenance
|
|
*/
|
|
|
|
require_once( "commandLine.inc" );
|
|
if ( isset( $args[0] ) ) {
|
|
wfWaitForSlaves($args[0]);
|
|
} else {
|
|
wfWaitForSlaves(10);
|
|
}
|
|
|
|
|