fixed missing closing php tag when installer.php wrote to config.php

This commit is contained in:
Eric Helgeson 2009-05-20 15:14:04 -05:00
parent f90d0ac6c8
commit dbf82f7c1e
1 changed files with 2 additions and 1 deletions

View File

@ -260,7 +260,8 @@ function writeConf($sitename, $sqlUrl, $fancy, $path)
"\$config['site']['name'] = \"$sitename\";\n\n".
($fancy ? "\$config['site']['fancy'] = true;\n\n":'').
"\$config['site']['path'] = \"$path\";\n\n".
"\$config['db']['database'] = \"$sqlUrl\";\n\n");
"\$config['db']['database'] = \"$sqlUrl\";\n\n".
"?>");
return $res;
}