aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_convert.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2007-02-17 01:14:28 +0000
committerNils Adermann <naderman@naderman.de>2007-02-17 01:14:28 +0000
commite526dfe83e805e8ffac5abcab0ba2fc67c7563ce (patch)
tree6201cc9f24bf2cd58c1a94639ce20dfe6305449d /phpBB/install/install_convert.php
parent72594577015eb9464aa0916c20ed9f8b41f6dfd6 (diff)
downloadforums-e526dfe83e805e8ffac5abcab0ba2fc67c7563ce.tar
forums-e526dfe83e805e8ffac5abcab0ba2fc67c7563ce.tar.gz
forums-e526dfe83e805e8ffac5abcab0ba2fc67c7563ce.tar.bz2
forums-e526dfe83e805e8ffac5abcab0ba2fc67c7563ce.tar.xz
forums-e526dfe83e805e8ffac5abcab0ba2fc67c7563ce.zip
- only give DBAL options which were available in phpBB2
- default to phpBB3 DB config git-svn-id: file:///svn/phpbb/trunk@6996 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_convert.php')
-rw-r--r--phpBB/install/install_convert.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php
index a3541f6f29..862964fccd 100644
--- a/phpBB/install/install_convert.php
+++ b/phpBB/install/install_convert.php
@@ -397,7 +397,7 @@ class install_convert extends module
}
$connect_test = false;
- $available_dbms = get_available_dbms(false, true);
+ $available_dbms = get_available_dbms(false, true, true);
if (!isset($available_dbms[$src_dbms]) || !$available_dbms[$src_dbms]['AVAILABLE'])
{
@@ -2110,7 +2110,7 @@ class install_convert extends module
*/
var $convert_options = array(
'legend1' => 'SPECIFY_OPTIONS',
- 'src_dbms' => array('lang' => 'DBMS', 'type' => 'select', 'options' => 'dbms_select(\'{VALUE}\')', 'explain' => false),
+ 'src_dbms' => array('lang' => 'DBMS', 'type' => 'select', 'options' => 'dbms_select(\'{VALUE}\', true)', 'explain' => false),
'src_dbhost' => array('lang' => 'DB_HOST', 'type' => 'text:25:100', 'explain' => true),
'src_dbport' => array('lang' => 'DB_PORT', 'type' => 'text:25:100', 'explain' => true),
'src_dbname' => array('lang' => 'DB_NAME', 'type' => 'text:25:100', 'explain' => false),