diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-06-19 12:00:07 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-06-19 12:00:07 +0200 |
commit | 91f2271fac29340b5eee3bb6657456bd5d161548 (patch) | |
tree | 6412657c45bfc05877de4831ea608a8dc7ace13c /installer | |
parent | 75666d3db2692d799bc719a917f7c31e22a269e3 (diff) |
Replace rcube_mdb2 with rcube_db
Diffstat (limited to 'installer')
-rw-r--r-- | installer/test.php | 2 |
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())) { |