Merge "Don't fallback from uk to ru"
[lhc/web/wiklou.git] / maintenance / storage / dumpRev.php
index dcb76e3..437bfcd 100644 (file)
@@ -36,11 +36,11 @@ class DumpRev extends Maintenance {
        }
 
        public function execute() {
-               $dbr = $this->getDB( DB_SLAVE );
+               $dbr = $this->getDB( DB_REPLICA );
                $row = $dbr->selectRow(
-                       array( 'text', 'revision' ),
-                       array( 'old_flags', 'old_text' ),
-                       array( 'old_id=rev_text_id', 'rev_id' => $this->getArg() )
+                       [ 'text', 'revision' ],
+                       [ 'old_flags', 'old_text' ],
+                       [ 'old_id=rev_text_id', 'rev_id' => $this->getArg() ]
                );
                if ( !$row ) {
                        $this->error( "Row not found", true );