X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Feval.php;h=abedc61a7dc65b7501930cd579a22383cd7e6da8;hb=9cf0a3d81ffd77202450731f6b1d38e2fe129022;hp=5aefe1c970e531ceb32a22f9b7754b48f20cb871;hpb=67e23ec357d2265bc487bdd4b63e30fcaf5871c7;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/eval.php b/maintenance/eval.php index 5aefe1c970..abedc61a7d 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"; - -