1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-13 20:28:44 +01:00

[ticket/11334] Make url helper method public

PHPBB3-11334
This commit is contained in:
David King 2013-02-15 16:52:54 -05:00
parent d3e2fae66d
commit 5e89ce1898

View File

@ -90,7 +90,7 @@ class phpbb_controller_helper
* @param string $route The route to travel
* @return string The URL already passed through append_sid()
*/
protected function url($route)
public function url($route)
{
return append_sid($this->phpbb_root_path . 'app.' . $this->php_ext, array('controller' => $route));
}