aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-30 18:33:56 +0200
committerTristan Darricau <github@nicofuma.fr>2014-11-20 19:00:46 +0100
commit7fa3b4c6860d85c7616e2182241eefe9515dc8a8 (patch)
tree8e6f396df6e13c482ac5e9e5a14cc295dc2c5572
parentc4842fe119a2947c3d6c34239f83d4d887a39f00 (diff)
downloadforums-7fa3b4c6860d85c7616e2182241eefe9515dc8a8.tar
forums-7fa3b4c6860d85c7616e2182241eefe9515dc8a8.tar.gz
forums-7fa3b4c6860d85c7616e2182241eefe9515dc8a8.tar.bz2
forums-7fa3b4c6860d85c7616e2182241eefe9515dc8a8.tar.xz
forums-7fa3b4c6860d85c7616e2182241eefe9515dc8a8.zip
[ticket/12620] Rename productive to production
PHPBB3-12620
-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 : './../';