X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FdumpLinks.php;h=1faeb8ae1918460d4c993061e59288a2207a1d23;hb=b5906606e1aa1a795231fb813b766818b1dd6c25;hp=888c2dc1d9354e64a591db4a584b44cff4fa1886;hpb=4f1390819a8fcd91c0c34449736fff4548032ad3;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/dumpLinks.php b/maintenance/dumpLinks.php index 888c2dc1d9..1faeb8ae19 100644 --- a/maintenance/dumpLinks.php +++ b/maintenance/dumpLinks.php @@ -40,21 +40,21 @@ require_once __DIR__ . '/Maintenance.php'; class DumpLinks extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Quick demo hack to generate a plaintext link dump"; + $this->addDescription( 'Quick demo hack to generate a plaintext link dump' ); } public function execute() { - $dbr = wfGetDB( DB_SLAVE ); - $result = $dbr->select( array( 'pagelinks', 'page' ), - array( + $dbr = $this->getDB( DB_SLAVE ); + $result = $dbr->select( [ 'pagelinks', 'page' ], + [ 'page_id', 'page_namespace', 'page_title', 'pl_namespace', - 'pl_title' ), - array( 'page_id=pl_from' ), + 'pl_title' ], + [ 'page_id=pl_from' ], __METHOD__, - array( 'ORDER BY' => 'page_id' ) ); + [ 'ORDER BY' => 'page_id' ] ); $lastPage = null; foreach ( $result as $row ) {