X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=blobdiff_plain;f=maintenance%2FgenerateSitemap.php;h=f5cc6f6539d64a39fb47bb9719660206c61a6011;hb=72632115d6cb72d040f6a4f88c172c8d9ba47d6e;hp=256824e7bef598aab5e735f840355e8bf2f5632c;hpb=7489189d7c13448114963520fb383cb2c7765b1e;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/generateSitemap.php b/maintenance/generateSitemap.php index 256824e7be..f5cc6f6539 100644 --- a/maintenance/generateSitemap.php +++ b/maintenance/generateSitemap.php @@ -89,21 +89,21 @@ class GenerateSitemap extends Maintenance { * * @var array */ - public $limit = array(); + public $limit = []; /** * Key => value entries of namespaces and their priorities * * @var array */ - public $priorities = array(); + public $priorities = []; /** * A one-dimensional array of namespaces in the wiki * * @var array */ - public $namespaces = array(); + public $namespaces = []; /** * When this sitemap batch was generated @@ -258,13 +258,13 @@ class GenerateSitemap extends Maintenance { } $res = $this->dbr->select( 'page', - array( 'page_namespace' ), - array(), + [ 'page_namespace' ], + [], __METHOD__, - array( + [ 'GROUP BY' => 'page_namespace', 'ORDER BY' => 'page_namespace', - ) + ] ); foreach ( $res as $row ) { @@ -306,13 +306,13 @@ class GenerateSitemap extends Maintenance { */ function getPageRes( $namespace ) { return $this->dbr->select( 'page', - array( + [ 'page_namespace', 'page_title', 'page_touched', 'page_is_redirect' - ), - array( 'page_namespace' => $namespace ), + ], + [ 'page_namespace' => $namespace ], __METHOD__ ); } @@ -548,7 +548,7 @@ class GenerateSitemap extends Maintenance { // bug 17961: make a title with the longest possible URL in this namespace $title = Title::makeTitle( $namespace, str_repeat( "\xf0\xa8\xae\x81", 63 ) . "\xe5\x96\x83" ); - $this->limit = array( + $this->limit = [ strlen( $this->openFile() ), strlen( $this->fileEntry( $title->getCanonicalURL(), @@ -556,7 +556,7 @@ class GenerateSitemap extends Maintenance { $this->priority( $namespace ) ) ), strlen( $this->closeFile() ) - ); + ]; } }