aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/di/extension/ext.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/di/extension/ext.php')
-rw-r--r--phpBB/phpbb/di/extension/ext.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/di/extension/ext.php b/phpBB/phpbb/di/extension/ext.php
index 330303ca0c..021e862118 100644
--- a/phpBB/phpbb/di/extension/ext.php
+++ b/phpBB/phpbb/di/extension/ext.php
@@ -48,16 +48,16 @@ class ext extends Extension
$services_directory = false;
$services_file = false;
- if (file_exists($path . 'config/' . PHPBB_ENVIRONMENT . '/environment.yml'))
+ if (file_exists($path . 'config/' . PHPBB_ENVIRONMENT . '/container/environment.yml'))
{
- $services_directory = $path . 'config/' . PHPBB_ENVIRONMENT;
+ $services_directory = $path . 'config/' . PHPBB_ENVIRONMENT . '/container/';
$services_file = 'environment.yml';
}
else if (!is_dir($path . 'config/' . PHPBB_ENVIRONMENT))
{
- if (file_exists($path . 'config/default/environment.yml'))
+ if (file_exists($path . 'config/default/container/environment.yml'))
{
- $services_directory = $path . 'config/default';
+ $services_directory = $path . 'config/default/container/';
$services_file = 'environment.yml';
}
else if (!is_dir($path . 'config/default') && file_exists($path . '/config/services.yml'))