diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-05-21 22:17:10 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-05-21 22:17:10 -0400 |
commit | d0e63a4f372ae4b4b753c898b8f5c0ff85c886c6 (patch) | |
tree | 7f5aa570cb26ebe455d92410db203cecb208856f /phpBB/includes/functions_install.php | |
parent | 3bd302c126c4f42893d718198abd2ca36e100257 (diff) | |
parent | d0b9864563e8a9f83ea32f9db374d9100b73d41c (diff) | |
download | forums-d0e63a4f372ae4b4b753c898b8f5c0ff85c886c6.tar forums-d0e63a4f372ae4b4b753c898b8f5c0ff85c886c6.tar.gz forums-d0e63a4f372ae4b4b753c898b8f5c0ff85c886c6.tar.bz2 forums-d0e63a4f372ae4b4b753c898b8f5c0ff85c886c6.tar.xz forums-d0e63a4f372ae4b4b753c898b8f5c0ff85c886c6.zip |
Merge PR #808 branch 'develop-olympus' into develop
* develop-olympus:
[ticket/10898] Do not write ?> into config.php to avoid whitespace output.
Diffstat (limited to 'phpBB/includes/functions_install.php')
-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 15b388728b..50af8fe019 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -558,7 +558,5 @@ 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; } |