MINOR Installer generated mysite/_config.php file now has consistent code formatting

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@100984 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sharvey 2010-03-13 07:48:19 +00:00 committed by Sam Minnee
parent 0be476a632
commit 412b26a30c

View File

@ -842,9 +842,9 @@ global \$project;
\$project = 'mysite'; \$project = 'mysite';
global \$database; global \$database;
\$database = "{$config['db']['database']}"; \$database = '{$config['db']['database']}';
require_once("conf/ConfigureFromEnv.php"); require_once('conf/ConfigureFromEnv.php');
MySQLDatabase::set_connection_charset('utf8'); MySQLDatabase::set_connection_charset('utf8');
@ -875,11 +875,11 @@ global \$project;
global \$databaseConfig; global \$databaseConfig;
\$databaseConfig = array( \$databaseConfig = array(
"type" => "{$config['db']['type']}", "type" => '{$config['db']['type']}',
"server" => "{$config['db']['server']}", "server" => '{$config['db']['server']}',
"username" => "{$config['db']['username']}", "username" => '{$config['db']['username']}',
"password" => '{$escapedPassword}', "password" => '{$escapedPassword}',
"database" => "{$config['db']['database']}", "database" => '{$config['db']['database']}',
); );
// Sites running on the following servers will be // Sites running on the following servers will be