diff options
author | Eric Helgeson <helfire@Erics-MBP.local> | 2009-05-20 15:14:04 -0500 |
---|---|---|
committer | Eric Helgeson <helfire@Erics-MBP.local> | 2009-05-20 15:14:04 -0500 |
commit | dbf82f7c1e995f25de6ed2c80b49677118df1a35 (patch) | |
tree | 64cd6807dad38e43cbd427dbd8fc15a3a166b7d7 | |
parent | f90d0ac6c8daae0f939df75b120368976f7b4a30 (diff) |
fixed missing closing php tag when installer.php wrote to config.php
-rw-r--r-- | install.php | 3 |
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; } |