diff options
| author | rxu <rxu@mail.ru> | 2017-04-27 15:33:05 +0700 |
|---|---|---|
| committer | rxu <rxu@mail.ru> | 2017-04-27 16:22:03 +0700 |
| commit | 33a62648d10f368aa7ddc77272a296db4de81bcb (patch) | |
| tree | a04fc6acea5372932e65ff293f39ef960a7487f1 | |
| parent | e53343857a2c54f7d14f8ce420b9db1d75a62c16 (diff) | |
| download | forums-33a62648d10f368aa7ddc77272a296db4de81bcb.tar forums-33a62648d10f368aa7ddc77272a296db4de81bcb.tar.gz forums-33a62648d10f368aa7ddc77272a296db4de81bcb.tar.bz2 forums-33a62648d10f368aa7ddc77272a296db4de81bcb.tar.xz forums-33a62648d10f368aa7ddc77272a296db4de81bcb.zip | |
[ticket/15200] Allow extensions using custom templates for help/faq controllers
PHPBB3-15200
| -rw-r--r-- | phpBB/faq.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/faq.php b/phpBB/faq.php index 5fe155eab0..cf34ce809a 100644 --- a/phpBB/faq.php +++ b/phpBB/faq.php @@ -25,6 +25,7 @@ $auth->acl($user->data); $user->setup(); $mode = request_var('mode', ''); +$template_file = 'faq_body.html'; // Load the appropriate faq file switch ($mode) @@ -47,13 +48,16 @@ switch ($mode) * @var string lang_file Language file containing the help data * @var string ext_name Vendor and extension name where the help * language file can be loaded from + * @var string template_file Template file name * @since 3.1.4-RC1 + * @changed 3.1.11-RC1 Added template_file var */ $vars = array( 'page_title', 'mode', 'lang_file', 'ext_name', + 'template_file', ); extract($phpbb_dispatcher->trigger_event('core.faq_mode_validation', compact($vars))); @@ -106,7 +110,7 @@ $template->assign_vars(array( page_header($l_title); $template->set_filenames(array( - 'body' => 'faq_body.html') + 'body' => $template_file) ); make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx")); |
