1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

[ticket/11152] Use realpath in container extensions consistently

PHPBB-11152
This commit is contained in:
Igor Wiedler
2012-11-11 16:28:28 +01:00
parent 3e4d3761fd
commit 09781a96bc
2 changed files with 7 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ class phpbb_di_extension_ext extends Extension
{
if (file_exists($path . '/config/services.yml'))
{
$loader = new YamlFileLoader($container, new FileLocator($path . '/config'));
$loader = new YamlFileLoader($container, new FileLocator(phpbb_real_path($path . '/config')));
$loader->load('services.yml');
}
}