summaryrefslogtreecommitdiff
path: root/maintenance/eval.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/eval.php')
-rw-r--r--maintenance/eval.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/maintenance/eval.php b/maintenance/eval.php
index 5aefe1c9..abedc61a 100644
--- a/maintenance/eval.php
+++ b/maintenance/eval.php
@@ -34,7 +34,7 @@
$optionsWithArgs = array( 'd' );
/** */
-require_once( __DIR__ . "/commandLine.inc" );
+require_once __DIR__ . "/commandLine.inc";
if ( isset( $options['d'] ) ) {
$d = $options['d'];
@@ -43,7 +43,7 @@ if ( isset( $options['d'] ) ) {
}
if ( $d > 1 ) {
$lb = wfGetLB();
- $serverCount = $lb->getServerCount();
+ $serverCount = $lb->getServerCount();
for ( $i = 0; $i < $serverCount; $i++ ) {
$server = $lb->getServerInfo( $i );
$server['flags'] |= DBO_DEBUG;
@@ -80,5 +80,3 @@ while ( ( $line = Maintenance::readconsole() ) !== false ) {
}
print "\n";
-
-