summaryrefslogtreecommitdiff
path: root/installer/config.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/config.php
parent0d94fd45f422fe0d0460f5db7a7761f56bc18236 (diff)
Replace rcube_mdb2/PEAR::MDB2 with rcube_db
Diffstat (limited to 'installer/config.php')
-rw-r--r--installer/config.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/installer/config.php b/installer/config.php
index bd676b12e..905fb06a3 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -267,13 +267,8 @@ echo $input_syslogfacility->show($RCI->getprop('syslog_facility'), LOG_USER);
<p>Database settings for read/write operations:</p>
<?php
-require_once 'MDB2.php';
-
-$supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli',
- 'PgSQL' => 'pgsql', 'SQLite' => 'sqlite');
-
$select_dbtype = new html_select(array('name' => '_dbtype', 'id' => "cfgdbtype"));
-foreach ($supported_dbs AS $database => $ext) {
+foreach ($RCI->supported_dbs as $database => $ext) {
if (extension_loaded($ext)) {
$select_dbtype->add($database, $ext);
}
@@ -284,7 +279,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 = MDB2::parseDSN($RCI->getprop('db_dsnw'));
+$dsnw = rcube_db::parse_dsn($RCI->getprop('db_dsnw'));
echo $select_dbtype->show($RCI->is_post ? $_POST['_dbtype'] : $dsnw['phptype']);
echo '<label for="cfgdbtype">Database type</label><br />';