aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2013-02-15 16:52:54 -0500
committerDavid King <imkingdavid@gmail.com>2013-03-15 09:18:08 -0400
commit5e89ce1898857f29e5345adf31d62bbed1fb985b (patch)
treee700a32ca979f4ba4a12fdf065117bb3b1d878c8 /phpBB/includes
parentd3e2fae66d74f79ef7dcfe2e24f47efaa5c106e2 (diff)
downloadforums-5e89ce1898857f29e5345adf31d62bbed1fb985b.tar
forums-5e89ce1898857f29e5345adf31d62bbed1fb985b.tar.gz
forums-5e89ce1898857f29e5345adf31d62bbed1fb985b.tar.bz2
forums-5e89ce1898857f29e5345adf31d62bbed1fb985b.tar.xz
forums-5e89ce1898857f29e5345adf31d62bbed1fb985b.zip
[ticket/11334] Make url helper method public
PHPBB3-11334
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/controller/helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/controller/helper.php b/phpBB/includes/controller/helper.php
index 0e64829874..f2beca2056 100644
--- a/phpBB/includes/controller/helper.php
+++ b/phpBB/includes/controller/helper.php
@@ -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));
}