1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/12620] Use PHPBB_ENVIRONMENT

PHPBB3-12620
This commit is contained in:
Tristan Darricau
2014-09-04 17:06:39 +02:00
parent 143dfa28c6
commit b697273aaa
5 changed files with 9 additions and 9 deletions

View File

@@ -453,11 +453,11 @@ function phpbb_create_config_file_data($data, $dbms, $debug = false, $debug_cont
if ($debug)
{
$config_data .= "@define('ENVIRONMENT', 'development');\n";
$config_data .= "@define('PHPBB_ENVIRONMENT', 'development');\n";
}
else
{
$config_data .= "@define('ENVIRONMENT', 'production');\n";
$config_data .= "@define('PHPBB_ENVIRONMENT', 'production');\n";
}
if ($debug_container)