summaryrefslogtreecommitdiff
path: root/installer/test.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-06-19 12:00:07 +0200
committerAleksander Machniak <alec@alec.pl>2012-06-19 12:00:07 +0200
commit91f2271fac29340b5eee3bb6657456bd5d161548 (patch)
tree6412657c45bfc05877de4831ea608a8dc7ace13c /installer/test.php
parent75666d3db2692d799bc719a917f7c31e22a269e3 (diff)
Replace rcube_mdb2 with rcube_db
Diffstat (limited to 'installer/test.php')
-rw-r--r--installer/test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/test.php b/installer/test.php
index 87896009c..f09b2f7c7 100644
--- a/installer/test.php
+++ b/installer/test.php
@@ -125,7 +125,7 @@ else {
$db_working = false;
if ($RCI->configured) {
if (!empty($RCI->config['db_dsnw'])) {
- $DB = new rcube_db::factory($RCI->config['db_dsnw'], '', false);
+ $DB = rcube_db::factory($RCI->config['db_dsnw'], '', false);
$DB->db_connect('w');
if (!($db_error_msg = $DB->is_error())) {