summaryrefslogtreecommitdiff
path: root/installer/test.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-06-19 11:33:23 +0200
committerAleksander Machniak <alec@alec.pl>2012-06-19 11:33:23 +0200
commit398bff59254590cbaebec7d62b1f000f271648aa (patch)
treebf19440568e83a8cab1171532a549b7f56d87094 /installer/test.php
parent0d94fd45f422fe0d0460f5db7a7761f56bc18236 (diff)
Replace rcube_mdb2/PEAR::MDB2 with rcube_db
Diffstat (limited to 'installer/test.php')
-rw-r--r--installer/test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/test.php b/installer/test.php
index 2dd330531..87896009c 100644
--- a/installer/test.php
+++ b/installer/test.php
@@ -125,9 +125,9 @@ else {
$db_working = false;
if ($RCI->configured) {
if (!empty($RCI->config['db_dsnw'])) {
-
- $DB = new rcube_mdb2($RCI->config['db_dsnw'], '', false);
+ $DB = new rcube_db::factory($RCI->config['db_dsnw'], '', false);
$DB->db_connect('w');
+
if (!($db_error_msg = $DB->is_error())) {
$RCI->pass('DSN (write)');
echo '<br />';