aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/controller
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2016-02-02 21:29:20 +0100
committerTristan Darricau <tristan.darricau@sensiolabs.com>2016-02-02 21:29:20 +0100
commit03fba990747bb0eeda47c8247b5808257d1443b7 (patch)
treea81f78974d37ed7182231aa8a9138d242824f61c /phpBB/phpbb/install/controller
parent724bd471a746d0fe2ef799091b943e671d21166e (diff)
parent91f809dc3dc926ff858e5e53ee8cfed781c1aeaa (diff)
downloadDiffstat (limited to 'phpBB/download.php')
0 files changed, 0 insertions, 0 deletions
Merge pull request #4017 from CHItA/ticket/14262
[ticket/14262] Move convertor to controller * CHItA/ticket/14262: [ticket/14262] Add error handling and small CS fixes [ticket/14262] Remove converter template duplicate [ticket/14262] Fix stage navigation [ticket/14262] Move convertor to controller
Diffstat (limited to 'phpBB/phpbb/install/controller')
-rw-r--r--phpBB/phpbb/install/controller/helper.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/phpbb/install/controller/helper.php b/phpBB/phpbb/install/controller/helper.php
index 2dad42b4b6..6859414236 100644
--- a/phpBB/phpbb/install/controller/helper.php
+++ b/phpBB/phpbb/install/controller/helper.php
@@ -160,12 +160,13 @@ class helper
* Returns path from route name
*
* @param string $route_name
+ * @param array $parameters
*
* @return string
*/
- public function route($route_name)
+ public function route($route_name, $parameters = array())
{
- $url = $this->router->generate($route_name);
+ $url = $this->router->generate($route_name, $parameters);
return $url;
}