From 7b91b66b870a6d2382c6434e1ed406169b07c60c Mon Sep 17 00:00:00 2001 From: rxu Date: Sat, 19 Jul 2014 14:09:22 +0800 Subject: [PATCH] [ticket/12871] Add PHPBB_DISPLAY_LOAD_TIME const to config.php on installation To make it consistent with another config.php constants, PHPBB_DISPLAY_LOAD_TIME is to be put in config.php during installation as well. PHPBB3-12871 --- phpBB/includes/functions_install.php | 1 + 1 file changed, 1 insertion(+) 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) {