Merge "mw.Feedback: If the message is posted remotely, link the title correctly"
[lhc/web/wiklou.git] / maintenance / updateArticleCount.php
index baba6c8..c72e74f 100644 (file)
@@ -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" );
@@ -69,5 +69,5 @@ class UpdateArticleCount extends Maintenance {
        }
 }
 
-$maintClass = "UpdateArticleCount";
+$maintClass = UpdateArticleCount::class;
 require_once RUN_MAINTENANCE_IF_MAIN;