From 54c64a0cf1160db174934799750d7eec83f4f433 Mon Sep 17 00:00:00 2001
From: Brenda Wallace <shiny@cpan.org>
Date: Fri, 30 Oct 2009 18:53:45 +1300
Subject: [PATCH] don't write the closing ?> to the config.php

---
 install.php | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/install.php b/install.php
index 319c261e41..6bfc4c2e21 100644
--- a/install.php
+++ b/install.php
@@ -692,9 +692,7 @@ function writeConf($sitename, $server, $path, $fancy, $db)
             // database
             "\$config['db']['database'] = '{$db['database']}';\n\n".
             ($db['type'] == 'pgsql' ? "\$config['db']['quote_identifiers'] = true;\n\n":'').
-            "\$config['db']['type'] = '{$db['type']}';\n\n".
-
-            "?>";
+            "\$config['db']['type'] = '{$db['type']}';\n\n";
     // write configuration file out to install directory
     $res = file_put_contents(INSTALLDIR.'/config.php', $cfg);
 
-- 
2.39.5