aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/controller/helper.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-09 18:38:21 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-09 18:38:21 +0100
commit2eb24d0ace239324086002db4582eaaddd07aa28 (patch)
tree35a22b300a76b756b92a125c18c594abc905b556 /phpBB/phpbb/controller/helper.php
parent436b1d3577cd1b66af568023e566d2de53c255a0 (diff)
downloadforums-2eb24d0ace239324086002db4582eaaddd07aa28.tar
forums-2eb24d0ace239324086002db4582eaaddd07aa28.tar.gz
forums-2eb24d0ace239324086002db4582eaaddd07aa28.tar.bz2
forums-2eb24d0ace239324086002db4582eaaddd07aa28.tar.xz
forums-2eb24d0ace239324086002db4582eaaddd07aa28.zip
[ticket/12090] Split finding routes and returning routes into 2 methods
PHPBB3-12090
Diffstat (limited to 'phpBB/phpbb/controller/helper.php')
-rw-r--r--phpBB/phpbb/controller/helper.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/phpbb/controller/helper.php b/phpBB/phpbb/controller/helper.php
index 8e33aaf605..2d11a54c08 100644
--- a/phpBB/phpbb/controller/helper.php
+++ b/phpBB/phpbb/controller/helper.php
@@ -66,8 +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);
-
+ $this->route_collection = $provider->find($this->phpbb_root_path)->get_routes();
}
/**