From: Chad Horohoe Date: Tue, 16 Nov 2010 13:44:51 +0000 (+0000) Subject: Fix for r69917: Should be using DB_ADMIN if we were using $wgUseRootUser X-Git-Tag: 1.31.0-rc.0~33866 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=9ffbe656b8d05388d4e2374453b8183b72779d6b;p=lhc%2Fweb%2Fwiklou.git Fix for r69917: Should be using DB_ADMIN if we were using $wgUseRootUser --- 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() {