diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-09-04 17:06:39 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-11-20 19:01:23 +0100 |
commit | b697273aaa53d9f9f4a3d4a53cc6267e906953cd (patch) | |
tree | 8ab6ad17b6922fb8ec93b9e0cfbc8e44991ff471 /phpBB/includes/functions_install.php | |
parent | 143dfa28c62bce5292c9840766f56d9f288980b5 (diff) | |
download | forums-b697273aaa53d9f9f4a3d4a53cc6267e906953cd.tar forums-b697273aaa53d9f9f4a3d4a53cc6267e906953cd.tar.gz forums-b697273aaa53d9f9f4a3d4a53cc6267e906953cd.tar.bz2 forums-b697273aaa53d9f9f4a3d4a53cc6267e906953cd.tar.xz forums-b697273aaa53d9f9f4a3d4a53cc6267e906953cd.zip |
[ticket/12620] Use PHPBB_ENVIRONMENT
PHPBB3-12620
Diffstat (limited to 'phpBB/includes/functions_install.php')
-rw-r--r-- | phpBB/includes/functions_install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index e0ecda3bfa..cdd9c7864b 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -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) |