From 9ffbe656b8d05388d4e2374453b8183b72779d6b Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Tue, 16 Nov 2010 13:44:51 +0000 Subject: [PATCH] Fix for r69917: Should be using DB_ADMIN if we were using $wgUseRootUser --- maintenance/fixSlaveDesync.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/maintenance/fixSlaveDesync.php b/maintenance/fixSlaveDesync.php index 0d91f540bd..9605e161ff 100644 --- a/maintenance/fixSlaveDesync.php +++ b/maintenance/fixSlaveDesync.php @@ -24,7 +24,10 @@ class FixSlaveDesync extends Maintenance { public function __construct() { parent::__construct(); $this->mDescription = ""; - + } + + public function getDbType() { + return self::DB_ADMIN; } public function execute() { -- 2.20.1