aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-09-04 17:06:39 +0200
committerTristan Darricau <github@nicofuma.fr>2014-11-20 19:01:23 +0100
commitb697273aaa53d9f9f4a3d4a53cc6267e906953cd (patch)
tree8ab6ad17b6922fb8ec93b9e0cfbc8e44991ff471 /phpBB/phpbb
parent143dfa28c62bce5292c9840766f56d9f288980b5 (diff)
downloadforums-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/phpbb')
-rw-r--r--phpBB/phpbb/di/extension/core.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/di/extension/core.php b/phpBB/phpbb/di/extension/core.php
index cff0a1e76e..7787602aba 100644
--- a/phpBB/phpbb/di/extension/core.php
+++ b/phpBB/phpbb/di/extension/core.php
@@ -50,7 +50,7 @@ class core extends Extension
public function load(array $config, ContainerBuilder $container)
{
$loader = new YamlFileLoader($container, new FileLocator(phpbb_realpath($this->config_path)));
- $loader->load(ENVIRONMENT . '/environment.yml');
+ $loader->load(PHPBB_ENVIRONMENT . '/environment.yml');
}
/**