aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/page_tail.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-02-24 22:03:15 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-02-24 22:03:15 +0000
commit28196e4f6132de69fa88b6374e4f281b0f2134b4 (patch)
treeee39ce10939e5d0208c712e4cc51cc8eafda619f /phpBB/page_tail.php
parentf37e152b6b40faef1fb6a9f143f448c7ffa23867 (diff)
downloadforums-28196e4f6132de69fa88b6374e4f281b0f2134b4.tar
forums-28196e4f6132de69fa88b6374e4f281b0f2134b4.tar.gz
forums-28196e4f6132de69fa88b6374e4f281b0f2134b4.tar.bz2
forums-28196e4f6132de69fa88b6374e4f281b0f2134b4.tar.xz
forums-28196e4f6132de69fa88b6374e4f281b0f2134b4.zip
Change to jumpbox creation
git-svn-id: file:///svn/phpbb/trunk@47 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/page_tail.php')
-rw-r--r--phpBB/page_tail.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/page_tail.php b/phpBB/page_tail.php
index b9d2c60548..fbe7c558ac 100644
--- a/phpBB/page_tail.php
+++ b/phpBB/page_tail.php
@@ -29,8 +29,12 @@ switch($pagetype)
$template->pparse("output", "footer");
break;
case 'viewforum':
- $jump_box = make_jumpbox($db, $phpEx);
- $template->set_var(array("JUMPBOX" => $jump_box));
+ $jumpbox = make_jumpbox($db);
+ $template->set_var(array("PHPEX" => $phpEx,
+ "FORUM_ID" => $forum_id,
+ "SELECT_NAME" => "forum_id",
+ "JUMPBOX_ACTION" => "viewforum.".$phpEx,
+ "JUMPBOX_LIST" => $jumpbox));
$template->pparse("output", "footer");
break;
}