X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FattachLatest.php;h=36060d8371c473202d4026098dbd0db2776f1f06;hb=7fa4f3baa1bd8dea6126d8d2c1f9948605e9a634;hp=deab60b5a01be2de533a836276b03554195e09ba;hpb=a4b114b3eb773252851d7a8a931c75461ee7a3fd;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/attachLatest.php b/maintenance/attachLatest.php index deab60b5a0..36060d8371 100644 --- a/maintenance/attachLatest.php +++ b/maintenance/attachLatest.php @@ -44,12 +44,12 @@ class AttachLatest extends Maintenance { public function execute() { $this->output( "Looking for pages with page_latest set to 0...\n" ); $dbw = $this->getDB( DB_MASTER ); - $conds = array( 'page_latest' => 0 ); + $conds = [ 'page_latest' => 0 ]; if ( $this->hasOption( 'regenerate-all' ) ) { $conds = ''; } $result = $dbw->select( 'page', - array( 'page_id', 'page_namespace', 'page_title' ), + [ 'page_id', 'page_namespace', 'page_title' ], $conds, __METHOD__ ); @@ -60,7 +60,7 @@ class AttachLatest extends Maintenance { $name = $title->getPrefixedText(); $latestTime = $dbw->selectField( 'revision', 'MAX(rev_timestamp)', - array( 'rev_page' => $pageId ), + [ 'rev_page' => $pageId ], __METHOD__ ); if ( !$latestTime ) { $this->output( wfWikiID() . " $pageId [[$name]] can't find latest rev time?!\n" );