diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-03-09 19:03:15 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-03-09 19:03:15 +0100 |
commit | b29c4c635865444cacb67407c767951c83040036 (patch) | |
tree | 0b99ba407360cca6278690aa2d6912e0e2cac5cd /phpBB/phpbb/controller | |
parent | 2eb24d0ace239324086002db4582eaaddd07aa28 (diff) | |
download | forums-b29c4c635865444cacb67407c767951c83040036.tar forums-b29c4c635865444cacb67407c767951c83040036.tar.gz forums-b29c4c635865444cacb67407c767951c83040036.tar.bz2 forums-b29c4c635865444cacb67407c767951c83040036.tar.xz forums-b29c4c635865444cacb67407c767951c83040036.zip |
[ticket/12090] Move find() call to container and fix tests
PHPBB3-12090
Diffstat (limited to 'phpBB/phpbb/controller')
-rw-r--r-- | phpBB/phpbb/controller/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/controller/helper.php b/phpBB/phpbb/controller/helper.php index 2d11a54c08..10fdbb1375 100644 --- a/phpBB/phpbb/controller/helper.php +++ b/phpBB/phpbb/controller/helper.php @@ -66,7 +66,7 @@ class helper $this->config = $config; $this->phpbb_root_path = $phpbb_root_path; $this->php_ext = $php_ext; - $this->route_collection = $provider->find($this->phpbb_root_path)->get_routes(); + $this->route_collection = $provider->get_routes(); } /** |