aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/page_tail.php
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-03-04 04:17:02 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-03-04 04:17:02 +0000
commit476718aa43c3139f19a31f89356a21ff8e83fc74 (patch)
tree16f0d8c65fe17f5a329002d8900baf94a4164ea6 /phpBB/page_tail.php
parent9411996f4568b026d009ecd6426d2d7dec7bef1a (diff)
downloadforums-476718aa43c3139f19a31f89356a21ff8e83fc74.tar
forums-476718aa43c3139f19a31f89356a21ff8e83fc74.tar.gz
forums-476718aa43c3139f19a31f89356a21ff8e83fc74.tar.bz2
forums-476718aa43c3139f19a31f89356a21ff8e83fc74.tar.xz
forums-476718aa43c3139f19a31f89356a21ff8e83fc74.zip
Viewtopic mostly done. Need private forum stuff, pagination, and some SQL tweaks
git-svn-id: file:///svn/phpbb/trunk@81 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/page_tail.php')
-rw-r--r--phpBB/page_tail.php23
1 files changed, 13 insertions, 10 deletions
diff --git a/phpBB/page_tail.php b/phpBB/page_tail.php
index 2fa923a97e..a9f5ee8086 100644
--- a/phpBB/page_tail.php
+++ b/phpBB/page_tail.php
@@ -25,16 +25,19 @@
// Load/parse the footer template we need based on pagetype.
switch($pagetype)
{
- case 'index':
- $template->pparse("output", "footer");
- break;
-
- case 'viewforum':
-
- $template->set_var(array("PHPEX" => $phpEx,
- "FORUM_ID" => $forum_id));
- $template->pparse("output", "footer");
- break;
+ case 'index':
+ $template->pparse("output", "footer");
+ break;
+
+ case 'viewforum':
+
+ $template->set_var(array("PHPEX" => $phpEx,
+ "FORUM_ID" => $forum_id));
+ $template->pparse("output", "footer");
+ break;
+ case 'viewtopic':
+ $template->pparse("output", "footer");
+ break;
}
// Show the overall footer.