X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcleanupRemovedModules.php;h=38b8ba1342c895499bf7669b642d6af1468c2d8d;hb=2e6c378bcd76830ccc320369c4d7247d788ce825;hp=19949bc912998dd47a510a5ebf85172d344569a9;hpb=7489189d7c13448114963520fb383cb2c7765b1e;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/cleanupRemovedModules.php b/maintenance/cleanupRemovedModules.php index 19949bc912..38b8ba1342 100644 --- a/maintenance/cleanupRemovedModules.php +++ b/maintenance/cleanupRemovedModules.php @@ -43,7 +43,7 @@ class CleanupRemovedModules extends Maintenance { $dbw = $this->getDB( DB_MASTER ); $rl = new ResourceLoader( ConfigFactory::getDefaultInstance()->makeConfig( 'main' ) ); $moduleNames = $rl->getModuleNames(); - $moduleList = implode( ', ', array_map( array( $dbw, 'addQuotes' ), $moduleNames ) ); + $moduleList = implode( ', ', array_map( [ $dbw, 'addQuotes' ], $moduleNames ) ); $limit = max( 1, intval( $this->getOption( 'batchsize', 500 ) ) ); $this->output( "Cleaning up module_deps table...\n" );