summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-13 09:14:50 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-13 09:14:50 +0000
commit52ab524fdf02078a42699a78b443823ca249307b (patch)
treedefb6d344c969e646bdaf186b0ed3eeef7fdd3ed
parent082c17284c9d2495a86905de10c32b860fb0ad38 (diff)
Use MDB2 instead of DB in installer (#1485124)
git-svn-id: https://svn.roundcube.net/trunk@1523 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/installer/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php
index 26262db31..04683b9c4 100644
--- a/roundcubemail/installer/config.php
+++ b/roundcubemail/installer/config.php
@@ -184,7 +184,7 @@ echo $select_mdnreq->show(intval($RCI->getprop('mdn_requests')));
<p>Database settings for read/write operations:</p>
<?php
-require_once 'DB.php';
+require_once 'MDB2.php';
$supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli',
'PgSQL' => 'pgsql', 'SQLite' => 'sqlite');
@@ -201,7 +201,7 @@ $input_dbname = new html_inputfield(array('name' => '_dbname', 'size' => 20, 'id
$input_dbuser = new html_inputfield(array('name' => '_dbuser', 'size' => 20, 'id' => "cfgdbuser"));
$input_dbpass = new html_passwordfield(array('name' => '_dbpass', 'size' => 20, 'id' => "cfgdbpass"));
-$dsnw = DB::parseDSN($RCI->getprop('db_dsnw'));
+$dsnw = MDB2::parseDSN($RCI->getprop('db_dsnw'));
echo $select_dbtype->show($RCI->is_post ? $_POST['_dbtype'] : $dsnw['phptype']);
echo '<label for="cfgdbtype">Database type</label><br />';