1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-05 15:16:16 +02:00

[ticket/11335] (controller/helper.php) Make php_ext 'php' not '.php'

PHPBB3-11335
This commit is contained in:
Nathan Guse 2013-04-24 17:10:17 -05:00
parent e870c04067
commit 6ef363547a
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ services:
- @template
- @user
- %core.root_path%
- .%core.php_ext%
- %core.php_ext%
controller.resolver:
class: phpbb_controller_resolver

View File

@ -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);
}
/**