diff options
author | David King <imkingdavid@gmail.com> | 2013-02-15 16:48:43 -0500 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2013-03-15 09:18:07 -0400 |
commit | d3e2fae66d74f79ef7dcfe2e24f47efaa5c106e2 (patch) | |
tree | 9558546e7acc1f65cc97381187eab4e55a5894e2 /phpBB | |
parent | 8c512b0d2d73a0930a420030dd6fecb8cb2d506f (diff) | |
download | forums-d3e2fae66d74f79ef7dcfe2e24f47efaa5c106e2.tar forums-d3e2fae66d74f79ef7dcfe2e24f47efaa5c106e2.tar.gz forums-d3e2fae66d74f79ef7dcfe2e24f47efaa5c106e2.tar.bz2 forums-d3e2fae66d74f79ef7dcfe2e24f47efaa5c106e2.tar.xz forums-d3e2fae66d74f79ef7dcfe2e24f47efaa5c106e2.zip |
[ticket/11334] Add a test for the controller helper URL method
PHPBB3-11334
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/controller/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/controller/helper.php b/phpBB/includes/controller/helper.php index 2098f51edf..0e64829874 100644 --- a/phpBB/includes/controller/helper.php +++ b/phpBB/includes/controller/helper.php @@ -55,7 +55,7 @@ class phpbb_controller_helper * @param string $phpbb_root_path phpBB root path * @param string $php_ext PHP extension */ - public function __construct(phpbb_template $template, phpbb_user $user, $phpbb_root_path, $php_ext) + public function __construct(phpbb_template $template = null, phpbb_user $user = null, $phpbb_root_path = './', $php_ext = '.php') { $this->template = $template; $this->user = $user; |