aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-03-25 19:53:53 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-03-25 19:53:53 +0000
commited32b4d8dc396a656a6a0b84f9a40c5fce53278a (patch)
tree2437c7edcc1c2412044cd5e9282fca9f757447ba /phpBB
parent1a8c91b0d40bc0331722906607ddf99c2be7c8d9 (diff)
downloadforums-ed32b4d8dc396a656a6a0b84f9a40c5fce53278a.tar
forums-ed32b4d8dc396a656a6a0b84f9a40c5fce53278a.tar.gz
forums-ed32b4d8dc396a656a6a0b84f9a40c5fce53278a.tar.bz2
forums-ed32b4d8dc396a656a6a0b84f9a40c5fce53278a.tar.xz
forums-ed32b4d8dc396a656a6a0b84f9a40c5fce53278a.zip
A small change to the ordering to try and ensure that the mysql module with the most functionality is listed first so that people are not using the old mysql3 one if they don't check the list.
This will probably get looked at again later git-svn-id: file:///svn/phpbb/trunk@5726 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rwxr-xr-xphpBB/install/install_install.php19
1 files changed, 12 insertions, 7 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index b09406ef2b..6a62c36518 100755
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -60,6 +60,11 @@ class install_install extends module
$this->obtain_database_settings($mode, $sub);
break;
+
+ case 'administrator' :
+ $this->obtain_admin_settings($mode, $sub);
+
+ break;
}
$this->tpl_name = 'install_install';
@@ -631,13 +636,6 @@ class install_install extends module
'DELIM' => ';;',
'COMMENTS' => 'remove_remarks'
),
- 'mysql' => array(
- 'LABEL' => 'MySQL',
- 'SCHEMA' => 'mysql',
- 'MODULE' => 'mysql',
- 'DELIM' => ';',
- 'COMMENTS' => 'remove_remarks'
- ),
'mysqli' => array(
'LABEL' => 'MySQL 4.1.x/5.x (MySQLi)',
'SCHEMA' => 'mysql',
@@ -652,6 +650,13 @@ class install_install extends module
'DELIM' => ';',
'COMMENTS' => 'remove_remarks'
),
+ 'mysql' => array(
+ 'LABEL' => 'MySQL',
+ 'SCHEMA' => 'mysql',
+ 'MODULE' => 'mysql',
+ 'DELIM' => ';',
+ 'COMMENTS' => 'remove_remarks'
+ ),
'mssql' => array(
'LABEL' => 'MS SQL Server 7/2000',
'SCHEMA' => 'mssql',