[ticket/12620] Rename productive to production

PHPBB3-12620
This commit is contained in:
Tristan Darricau 2014-05-30 18:33:56 +02:00
parent c4842fe119
commit 7fa3b4c686
4 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ extract($phpbb_config_php_file->get_all());
if (!defined('ENVIRONMENT')) if (!defined('ENVIRONMENT'))
{ {
@define('ENVIRONMENT', 'productive'); @define('ENVIRONMENT', 'production');
} }
if (!defined('PHPBB_INSTALLED')) if (!defined('PHPBB_INSTALLED'))

View file

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

View file

@ -16,7 +16,7 @@
*/ */
define('IN_PHPBB', true); define('IN_PHPBB', true);
define('IN_INSTALL', true); define('IN_INSTALL', true);
define('ENVIRONMENT', 'productive'); define('ENVIRONMENT', 'production');
/**#@-*/ /**#@-*/
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../'; $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';