From 60ff89dfbd8604d3b5a7e1dddf0fd3d5c1ceb9a0 Mon Sep 17 00:00:00 2001 From: ischommer Date: Thu, 19 Nov 2009 19:54:50 +0000 Subject: [PATCH] BUGFIX Fixed $ escaping in passwords set by install.php in _config.php (#4676) (from r90883) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@92252 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 4b00199..4e15d61 100644 --- a/install.php +++ b/install.php @@ -741,7 +741,7 @@ global \$databaseConfig; "type" => "$config[database]", "server" => "{$config['mysql']['server']}", "username" => "{$config['mysql']['username']}", - "password" => "{$escapedPassword}", + "password" => '{$escapedPassword}', "database" => "{$config['mysql']['database']}", );