diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-20 18:49:19 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-11-20 19:00:59 +0100 |
commit | 8664d3229a511eb320fef3df6a852d1a20852dae (patch) | |
tree | 47d3323b46991f42bef6f527857b2e38ae081e85 /phpBB/phpbb/di | |
parent | 943e27dffa1ecea1c34e9ae5b11c49186f30e046 (diff) | |
download | forums-8664d3229a511eb320fef3df6a852d1a20852dae.tar forums-8664d3229a511eb320fef3df6a852d1a20852dae.tar.gz forums-8664d3229a511eb320fef3df6a852d1a20852dae.tar.bz2 forums-8664d3229a511eb320fef3df6a852d1a20852dae.tar.xz forums-8664d3229a511eb320fef3df6a852d1a20852dae.zip |
[ticket/12620] Split the environments into differents folders
PHPBB3-12620
Diffstat (limited to 'phpBB/phpbb/di')
-rw-r--r-- | phpBB/phpbb/di/extension/core.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/di/extension/core.php b/phpBB/phpbb/di/extension/core.php index 5fb8d9ad34..cff0a1e76e 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(ENVIRONMENT . '/environment.yml'); } /** |