diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-05-18 11:15:53 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-05-18 11:15:53 +0200 |
commit | 70be7e109f067d6f6d1add488338294dd59c7785 (patch) | |
tree | 3ec2e93823c9bd342ea8378a2f4ee796ee01b12d /phpBB/includes | |
parent | 86fa185a1ba4754b6c2dc9769b826aa9d57aa148 (diff) | |
download | forums-70be7e109f067d6f6d1add488338294dd59c7785.tar forums-70be7e109f067d6f6d1add488338294dd59c7785.tar.gz forums-70be7e109f067d6f6d1add488338294dd59c7785.tar.bz2 forums-70be7e109f067d6f6d1add488338294dd59c7785.tar.xz forums-70be7e109f067d6f6d1add488338294dd59c7785.zip |
[ticket/10898] Do not write ?> into config.php to avoid whitespace output.
PHPBB3-10898
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_install.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index 633b2755f0..9e9c48ff58 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -559,8 +559,6 @@ function phpbb_create_config_file_data($data, $dbms, $load_extensions, $debug = $config_data .= "// @define('DEBUG_EXTRA', true);\n"; } - $config_data .= '?' . '>'; // Done this to prevent highlighting editors getting confused! - return $config_data; } |