Merge "Revert "Use display name in category page subheadings if provided""
[lhc/web/wiklou.git] / maintenance / updateArticleCount.php
index 9537a79..213195d 100644 (file)
@@ -35,7 +35,7 @@ class UpdateArticleCount extends Maintenance {
 
        public function __construct() {
                parent::__construct();
-               $this->mDescription = "Count of the number of articles and update the site statistics table";
+               $this->addDescription( 'Count of the number of articles and update the site statistics table' );
                $this->addOption( 'update', 'Update the site_stats table with the new count' );
                $this->addOption( 'use-master', 'Count using the master database' );
        }
@@ -46,7 +46,7 @@ class UpdateArticleCount extends Maintenance {
                if ( $this->hasOption( 'use-master' ) ) {
                        $dbr = $this->getDB( DB_MASTER );
                } else {
-                       $dbr = $this->getDB( DB_SLAVE, 'vslow' );
+                       $dbr = $this->getDB( DB_REPLICA, 'vslow' );
                }
                $counter = new SiteStatsInit( $dbr );
                $result = $counter->articles();
@@ -57,8 +57,8 @@ class UpdateArticleCount extends Maintenance {
                        $dbw = $this->getDB( DB_MASTER );
                        $dbw->update(
                                'site_stats',
-                               array( 'ss_good_articles' => $result ),
-                               array( 'ss_row_id' => 1 ),
+                               [ 'ss_good_articles' => $result ],
+                               [ 'ss_row_id' => 1 ],
                                __METHOD__
                        );
                        $this->output( "done.\n" );