X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=maintenance%2FpurgeList.php;h=16a62f405d1404d4ee627e133ce3540711a66b9a;hp=5ca7918ea9164bb7cce7ef61f4ec2f2acbf3f7f7;hb=5ca054dafe0449b297822eb25da429735a3a3ac7;hpb=bdfe02223205923d923923dd420ba0dd863cd0fe diff --git a/maintenance/purgeList.php b/maintenance/purgeList.php index 5ca7918ea9..16a62f405d 100644 --- a/maintenance/purgeList.php +++ b/maintenance/purgeList.php @@ -99,7 +99,7 @@ class PurgeList extends Maintenance { $conds + [ 'page_id > ' . $dbr->addQuotes( $startId ) ], __METHOD__, [ - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), 'ORDER BY' => 'page_id' ] @@ -143,5 +143,5 @@ class PurgeList extends Maintenance { } } -$maintClass = "PurgeList"; +$maintClass = PurgeList::class; require_once RUN_MAINTENANCE_IF_MAIN;