X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FattachLatest.php;h=36060d8371c473202d4026098dbd0db2776f1f06;hb=90845301542482bd4e502221e6485a7375193529;hp=fba6b92db221c1da9b94dc6e3614e457aa191d20;hpb=b2645d82849ca74b0e6b8df6a3e28e81d0561a58;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/attachLatest.php b/maintenance/attachLatest.php index fba6b92db2..36060d8371 100644 --- a/maintenance/attachLatest.php +++ b/maintenance/attachLatest.php @@ -38,18 +38,18 @@ class AttachLatest extends Maintenance { $this->addOption( "fix", "Actually fix the entries, will dry run otherwise" ); $this->addOption( "regenerate-all", "Regenerate the page_latest field for all records in table page" ); - $this->mDescription = "Fix page_latest entries in the page table"; + $this->addDescription( 'Fix page_latest entries in the page table' ); } public function execute() { $this->output( "Looking for pages with page_latest set to 0...\n" ); - $dbw = wfGetDB( DB_MASTER ); - $conds = array( 'page_latest' => 0 ); + $dbw = $this->getDB( DB_MASTER ); + $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" );