Recommitting User::isActiveUser() as User::isActiveEditor() per suggestions from...
[lhc/web/wiklou.git] / maintenance / waitForSlave.php
1 <?php
2 /**
3 * @file
4 * @ingroup Maintenance
5 */
6
7 require_once( "commandLine.inc" );
8 if ( isset( $args[0] ) ) {
9 wfWaitForSlaves($args[0]);
10 } else {
11 wfWaitForSlaves(10);
12 }
13
14