aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/controller/helper.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/install/controller/helper.php')
-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;
}