aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/common.php2
-rw-r--r--phpBB/config/environment_production.yml (renamed from phpBB/config/environment_productive.yml)0
-rw-r--r--phpBB/includes/functions_install.php2
-rw-r--r--phpBB/install/index.php2
4 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 47c9085d5f..a1142e4af4 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -31,7 +31,7 @@ extract($phpbb_config_php_file->get_all());
if (!defined('ENVIRONMENT'))
{
- @define('ENVIRONMENT', 'productive');
+ @define('ENVIRONMENT', 'production');
}
if (!defined('PHPBB_INSTALLED'))
diff --git a/phpBB/config/environment_productive.yml b/phpBB/config/environment_production.yml
index 6982aa4f83..6982aa4f83 100644
--- a/phpBB/config/environment_productive.yml
+++ b/phpBB/config/environment_production.yml
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php
index 4ed44da0b1..e0ecda3bfa 100644
--- a/phpBB/includes/functions_install.php
+++ b/phpBB/includes/functions_install.php
@@ -457,7 +457,7 @@ function phpbb_create_config_file_data($data, $dbms, $debug = false, $debug_cont
}
else
{
- $config_data .= "@define('ENVIRONMENT', 'productive');\n";
+ $config_data .= "@define('ENVIRONMENT', 'production');\n";
}
if ($debug_container)
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index 00a35b4690..8edc447492 100644
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -16,7 +16,7 @@
*/
define('IN_PHPBB', true);
define('IN_INSTALL', true);
-define('ENVIRONMENT', 'productive');
+define('ENVIRONMENT', 'production');
/**#@-*/
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';