From 9b1c783bf4aa6b5ac0c6832b13b60ff51c559106 Mon Sep 17 00:00:00 2001 From: sminnee Date: Thu, 15 Jul 2010 22:53:50 +0000 Subject: [PATCH] BUGFIX: Fixed CLI installation. git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@108032 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.php b/install.php index a4e16a5..a47f5c7 100644 --- a/install.php +++ b/install.php @@ -103,8 +103,9 @@ if(isset($_REQUEST['db'])) { $databaseConfig['type'] = $type; } } else { + $type = $_REQUEST['db']['type'] = defined('SS_DATABASE_CLASS') ? SS_DATABASE_CLASS : 'MySQLDatabase'; $_REQUEST['db'][$type] = $databaseConfig = array( - "type" => defined('SS_DATABASE_CLASS') ? SS_DATABASE_CLASS : "MySQLDatabase", + "type" => $type, "server" => defined('SS_DATABASE_SERVER') ? SS_DATABASE_SERVER : "localhost", "username" => defined('SS_DATABASE_USERNAME') ? SS_DATABASE_USERNAME : "root", "password" => defined('SS_DATABASE_PASSWORD') ? SS_DATABASE_PASSWORD : "",