Merge "Re add wpScrolltop id in EditPage"
[lhc/web/wiklou.git] / maintenance / checkBadRedirects.php
index 500fc35..6eafc96 100644 (file)
@@ -31,16 +31,16 @@ require_once __DIR__ . '/Maintenance.php';
 class CheckBadRedirects extends Maintenance {
        public function __construct() {
                parent::__construct();
-               $this->mDescription = "Check for bad redirects";
+               $this->addDescription( 'Check for bad redirects' );
        }
 
        public function execute() {
                $this->output( "Fetching redirects...\n" );
-               $dbr = $this->getDB( DB_SLAVE );
+               $dbr = $this->getDB( DB_REPLICA );
                $result = $dbr->select(
-                       array( 'page' ),
-                       array( 'page_namespace', 'page_title', 'page_latest' ),
-                       array( 'page_is_redirect' => 1 ) );
+                       [ 'page' ],
+                       [ 'page_namespace', 'page_title', 'page_latest' ],
+                       [ 'page_is_redirect' => 1 ] );
 
                $count = $result->numRows();
                $this->output( "Found $count redirects.\n" .