diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-11-19 20:54:14 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-11-20 21:13:26 +0100 |
commit | 48950be82bca0c85347f5aa1585de44c369780c6 (patch) | |
tree | 185f3117d1375ed64bd720eed5bf9bc4ecd592c7 /phpBB/includes/functions_install.php | |
parent | ac0ff219c61bd187dd3fbde5b6808624bd8ef077 (diff) | |
download | forums-48950be82bca0c85347f5aa1585de44c369780c6.tar forums-48950be82bca0c85347f5aa1585de44c369780c6.tar.gz forums-48950be82bca0c85347f5aa1585de44c369780c6.tar.bz2 forums-48950be82bca0c85347f5aa1585de44c369780c6.tar.xz forums-48950be82bca0c85347f5aa1585de44c369780c6.zip |
[ticket/12620] Fix tests
PHPBB3-12620
Diffstat (limited to 'phpBB/includes/functions_install.php')
-rw-r--r-- | phpBB/includes/functions_install.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index cdd9c7864b..ef4e3166e3 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -450,15 +450,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) - { - $config_data .= "@define('PHPBB_ENVIRONMENT', 'development');\n"; - } - else - { - $config_data .= "@define('PHPBB_ENVIRONMENT', 'production');\n"; - } + $config_data .= "@define('PHPBB_ENVIRONMENT', 'test');\n"; if ($debug_container) { |