diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 17:10:17 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 17:45:33 -0500 |
commit | 6ef363547abf98445d20db61ffa5bac66b260603 (patch) | |
tree | 15a450db2887993b149f6cba920803833d2cf1c7 /phpBB/includes/controller | |
parent | e870c04067772d227c4254533826f01252608f26 (diff) | |
download | forums-6ef363547abf98445d20db61ffa5bac66b260603.tar forums-6ef363547abf98445d20db61ffa5bac66b260603.tar.gz forums-6ef363547abf98445d20db61ffa5bac66b260603.tar.bz2 forums-6ef363547abf98445d20db61ffa5bac66b260603.tar.xz forums-6ef363547abf98445d20db61ffa5bac66b260603.zip |
[ticket/11335] (controller/helper.php) Make php_ext 'php' not '.php'
PHPBB3-11335
Diffstat (limited to 'phpBB/includes/controller')
-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 46c6307cb4..74410ddfd1 100644 --- a/phpBB/includes/controller/helper.php +++ b/phpBB/includes/controller/helper.php @@ -117,7 +117,7 @@ class phpbb_controller_helper $params = array('controller' => $route); } - return append_sid($this->phpbb_root_path . 'app' . $this->php_ext . $route_params, $params, $is_amp, $session_id); + return append_sid($this->phpbb_root_path . 'app.' . $this->php_ext . $route_params, $params, $is_amp, $session_id); } /** |