aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/page_header.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/page_header.php b/phpBB/page_header.php
index a8e56627e1..1f4bf2d4d6 100644
--- a/phpBB/page_header.php
+++ b/phpBB/page_header.php
@@ -49,6 +49,16 @@ switch($pagetype)
$template->pparse("output", "header");
break;
+ case 'viewforum':
+ $page_title = "View Forum";
+ $template->set_file(array("header" => "viewforum_header.tpl",
+ "body" => "viewforum_body.tpl",
+ "footer" => "viewforum_footer.tpl"));
+ $template->set_var(array("FORUM_ID" => $forum_id,
+ "FORUM_NAME" => $forum_name,
+ "MODERATORS" => $forum_moderators));
+ $template->pparse("output", "header");
+ break;
}
?>