1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-23 03:25:18 +02:00

[ticket/11497] Fix the path for the finder in controller_provider

PHPBB3-11497
This commit is contained in:
Nicofuma
2014-05-03 12:24:07 +02:00
parent 01e19a00f8
commit e920f146ca

View File

@ -51,7 +51,7 @@ class provider
// We hardcode the path to the core config directory // We hardcode the path to the core config directory
// because the finder cannot find it // because the finder cannot find it
$this->routing_files = array_merge($this->routing_files, array('config/routing.yml'), array_keys($finder $this->routing_files = array_merge($this->routing_files, array('config/routing.yml'), array_keys($finder
->directory('config') ->directory('/config')
->suffix('routing.yml') ->suffix('routing.yml')
->find() ->find()
)); ));