repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove unused parameter
[mediawiki.git]
/
maintenance
/
waitForSlave.php
blob
309d0e7d368026fd2dbff5feafcbc0a7a8a5c979
1
<
?php
2
/**
3
* @see wfWaitForSlaves()
4
* @file
5
* @ingroup Maintenance
6
*/
7
8
require_once
(
"commandLine.inc"
);
9
if
(
isset
(
$args
[
0
] ) ) {
10
wfWaitForSlaves
(
$args
[
0
]);
11
}
else
{
12
wfWaitForSlaves
(
10
);
13
}
14
15