diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-07-21 22:40:02 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-07-21 22:40:02 +0200 |
commit | 58d91d1d546c521b3ed776f9931e5558a8a9a471 (patch) | |
tree | 7f8da7d090d8c13e34036813ef226bce12b6bd3d | |
parent | 38100cc7c0be43c38f0a74193871cfd8a3afc7b4 (diff) | |
parent | 7b91b66b870a6d2382c6434e1ed406169b07c60c (diff) | |
download | forums-58d91d1d546c521b3ed776f9931e5558a8a9a471.tar forums-58d91d1d546c521b3ed776f9931e5558a8a9a471.tar.gz forums-58d91d1d546c521b3ed776f9931e5558a8a9a471.tar.bz2 forums-58d91d1d546c521b3ed776f9931e5558a8a9a471.tar.xz forums-58d91d1d546c521b3ed776f9931e5558a8a9a471.zip |
Merge pull request #2757 from rxu/ticket/12871
[ticket/12871] Add PHPBB_DISPLAY_LOAD_TIME const to config.php on installation
* rxu/ticket/12871:
[ticket/12871] Add PHPBB_DISPLAY_LOAD_TIME const to config.php on installation
-rw-r--r-- | phpBB/includes/functions_install.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index 06f49e4b50..ab6ecb5519 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -449,6 +449,7 @@ function phpbb_create_config_file_data($data, $dbms, $debug = false, $debug_cont } $config_data .= "\n@define('PHPBB_INSTALLED', true);\n"; + $config_data .= "// @define('PHPBB_DISPLAY_LOAD_TIME', true);\n"; if ($debug) { |