summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--install.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/install.php b/install.php
index 32915200b..a25f69467 100644
--- a/install.php
+++ b/install.php
@@ -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;
}