summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorEric Helgeson <helfire@Erics-MBP.local>2009-05-20 15:14:04 -0500
committerEric Helgeson <helfire@Erics-MBP.local>2009-05-20 15:14:04 -0500
commitdbf82f7c1e995f25de6ed2c80b49677118df1a35 (patch)
tree64cd6807dad38e43cbd427dbd8fc15a3a166b7d7 /install.php
parentf90d0ac6c8daae0f939df75b120368976f7b4a30 (diff)
fixed missing closing php tag when installer.php wrote to config.php
Diffstat (limited to 'install.php')
-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;
}