aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/controller
diff options
context:
space:
mode:
authorNicofuma <github@nicofuma.fr>2014-05-03 12:24:07 +0200
committerNicofuma <github@nicofuma.fr>2014-05-03 12:24:07 +0200
commite920f146ca10185064c5dfc7dcc3f45704e833e3 (patch)
tree989acfbfd0a409ad7706db1dc46397273aa3e71b /phpBB/phpbb/controller
parent01e19a00f8107698ed1c6868398cbbf0ac2ab7d8 (diff)
downloadforums-e920f146ca10185064c5dfc7dcc3f45704e833e3.tar
forums-e920f146ca10185064c5dfc7dcc3f45704e833e3.tar.gz
forums-e920f146ca10185064c5dfc7dcc3f45704e833e3.tar.bz2
forums-e920f146ca10185064c5dfc7dcc3f45704e833e3.tar.xz
forums-e920f146ca10185064c5dfc7dcc3f45704e833e3.zip
[ticket/11497] Fix the path for the finder in controller_provider
PHPBB3-11497
Diffstat (limited to 'phpBB/phpbb/controller')
-rw-r--r--phpBB/phpbb/controller/provider.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/controller/provider.php b/phpBB/phpbb/controller/provider.php
index 7e33db1f74..287cb44593 100644
--- a/phpBB/phpbb/controller/provider.php
+++ b/phpBB/phpbb/controller/provider.php
@@ -51,7 +51,7 @@ class provider
// We hardcode the path to the core config directory
// because the finder cannot find it
$this->routing_files = array_merge($this->routing_files, array('config/routing.yml'), array_keys($finder
- ->directory('config')
+ ->directory('/config')
->suffix('routing.yml')
->find()
));