Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MINOR Installer generated mysite/_config.php file now has consistent …
…code formatting (from r100984)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112210 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
sminnee committed Oct 13, 2010
1 parent 8654d46 commit dd1af76
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions install.php
Expand Up @@ -842,9 +842,9 @@ function install($config) {
\$project = 'mysite';
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');
Expand Down Expand Up @@ -875,11 +875,11 @@ function install($config) {
global \$databaseConfig;
\$databaseConfig = array(
"type" => "{$config['db']['type']}",
"server" => "{$config['db']['server']}",
"username" => "{$config['db']['username']}",
"type" => '{$config['db']['type']}',
"server" => '{$config['db']['server']}',
"username" => '{$config['db']['username']}',
"password" => '{$escapedPassword}',
"database" => "{$config['db']['database']}",
"database" => '{$config['db']['database']}',
);
// Sites running on the following servers will be
Expand Down

0 comments on commit dd1af76

Please sign in to comment.