prefering mysqli for new installs

This commit is contained in:
Ralf Becker 2013-05-26 09:43:10 +00:00
parent 3996f8a936
commit da74bf4210
2 changed files with 11 additions and 11 deletions

View File

@ -24,7 +24,7 @@ $config = array(
'domain' => 'default', 'domain' => 'default',
'config_user' => 'admin', 'config_user' => 'admin',
'config_passwd' => randomstring(), 'config_passwd' => randomstring(),
'db_type' => 'mysql', 'db_type' => 'mysqli',
'db_host' => 'localhost', 'db_host' => 'localhost',
'db_port' => 3306, 'db_port' => 3306,
'db_name' => 'egroupware', 'db_name' => 'egroupware',

View File

@ -270,7 +270,7 @@ class setup_cmd_database extends setup_cmd
* @param string $db_type='mysql' * @param string $db_type='mysql'
* @return array * @return array
*/ */
static function defaults($db_type='mysql') static function defaults($db_type='mysqli')
{ {
switch($db_type) switch($db_type)
{ {