diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-05-21 22:15:17 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-05-21 22:15:17 -0400 |
commit | d0b9864563e8a9f83ea32f9db374d9100b73d41c (patch) | |
tree | 649180635f40825a99aa6028e933dac4bc0a671c | |
parent | 1c7b5687714206c86b10d5c5dea2f3da73919405 (diff) | |
parent | 70be7e109f067d6f6d1add488338294dd59c7785 (diff) | |
download | forums-d0b9864563e8a9f83ea32f9db374d9100b73d41c.tar forums-d0b9864563e8a9f83ea32f9db374d9100b73d41c.tar.gz forums-d0b9864563e8a9f83ea32f9db374d9100b73d41c.tar.bz2 forums-d0b9864563e8a9f83ea32f9db374d9100b73d41c.tar.xz forums-d0b9864563e8a9f83ea32f9db374d9100b73d41c.zip |
Merge PR #808 branch 'bantu/ticket/10898' into develop-olympus
* bantu/ticket/10898:
[ticket/10898] Do not write ?> into config.php to avoid whitespace output.
-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; } |