X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FrunBatchedQuery.php;h=af8890509edfaad9fd33c6810734cedd51fc77d4;hb=a8604e364262a491f4081209427e25f9ba24fe2a;hp=93ba24a9d1270479fa2702a3a6f69fc42d67584a;hpb=3a7e36b2d6f7a77ee1fbc356f277ee4bf0aeb60c;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/runBatchedQuery.php b/maintenance/runBatchedQuery.php index 93ba24a9d1..af8890509e 100644 --- a/maintenance/runBatchedQuery.php +++ b/maintenance/runBatchedQuery.php @@ -33,7 +33,8 @@ require_once __DIR__ . '/Maintenance.php'; class BatchedQueryRunner extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Run a query repeatedly until it affects 0 rows, and wait for slaves in between.\n" . + $this->mDescription = + "Run a query repeatedly until it affects 0 rows, and wait for slaves in between.\n" . "NOTE: You need to set a LIMIT clause yourself."; } @@ -60,6 +61,5 @@ class BatchedQueryRunner extends Maintenance { } } - $maintClass = "BatchedQueryRunner"; require_once RUN_MAINTENANCE_IF_MAIN;