X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FtidyUpBug37714.php;h=0dd0341d3c35d0fc63e4c3093e36e4a39b6b51aa;hb=899f475d0dad8ea0a24f706fc8ac07e3097d6191;hp=f47e13c06d41007ea79ec4040006dc7f9cd1ba5e;hpb=e3bd13db0c285f312e31bb1b7271af4628cca80c;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/tidyUpBug37714.php b/maintenance/tidyUpBug37714.php index f47e13c06d..0dd0341d3c 100644 --- a/maintenance/tidyUpBug37714.php +++ b/maintenance/tidyUpBug37714.php @@ -7,7 +7,7 @@ require_once __DIR__ . '/Maintenance.php'; class TidyUpBug37714 extends Maintenance { public function execute() { // Search for all log entries which are about changing the visability of other log entries. - $result = $this->getDB( DB_SLAVE )->select( + $result = $this->getDB( DB_REPLICA )->select( 'logging', [ 'log_id', 'log_params' ], [ @@ -21,7 +21,7 @@ class TidyUpBug37714 extends Maintenance { foreach ( $result as $row ) { $ids = explode( ',', explode( "\n", $row->log_params )[0] ); - $result = $this->getDB( DB_SLAVE )->select( // Work out what log entries were changed here. + $result = $this->getDB( DB_REPLICA )->select( // Work out what log entries were changed here. 'logging', 'log_type', [ 'log_id' => $ids ], @@ -44,5 +44,5 @@ class TidyUpBug37714 extends Maintenance { } } -$maintClass = 'TidyUpBug37714'; +$maintClass = TidyUpBug37714::class; require_once RUN_MAINTENANCE_IF_MAIN;