summaryrefslogtreecommitdiff
path: root/includes/extauth/vB.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/extauth/vB.php')
-rw-r--r--includes/extauth/vB.php15
1 files changed, 8 insertions, 7 deletions
diff --git a/includes/extauth/vB.php b/includes/extauth/vB.php
index f516c423..0565a2e3 100644
--- a/includes/extauth/vB.php
+++ b/includes/extauth/vB.php
@@ -103,13 +103,14 @@ class ExternalUser_vB extends ExternalUser {
private function getDb() {
global $wgExternalAuthConf;
- return new Database(
- $wgExternalAuthConf['server'],
- $wgExternalAuthConf['username'],
- $wgExternalAuthConf['password'],
- $wgExternalAuthConf['dbname'],
- 0,
- $wgExternalAuthConf['tablePrefix']
+ return DatabaseBase::factory( 'mysql',
+ array(
+ 'host' => $wgExternalAuthConf['server'],
+ 'user' => $wgExternalAuthConf['username'],
+ 'password' => $wgExternalAuthConf['password'],
+ 'dbname' => $wgExternalAuthConf['dbname'],
+ 'tablePrefix' => $wgExternalAuthConf['tablePrefix'],
+ )
);
}