From d5eb5cd1d7b36c6542a503f7b5930799b3bb2eaf Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Fri, 13 Jun 2008 05:14:50 -0400
Subject: [PATCH] Use MDB2 instead of DB in installer (#1485124)
---
installer/config.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/installer/config.php b/installer/config.php
index 26262db..04683b9 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -184,7 +184,7 @@
<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_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 />';
--
Gitblit v1.9.1