mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-27 17:49:27 +02:00
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
This commit is contained in:
parent
1a8c91b0d4
commit
ed32b4d8dc
@ -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',
|
||||
|
Loading…
x
Reference in New Issue
Block a user