mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
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
This commit is contained in:
parent
48fe08f2d0
commit
60ff89dfbd
@ -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']}",
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user