Change to jumpbox creation

git-svn-id: file:///svn/phpbb/trunk@47 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-02-24 22:03:15 +00:00
parent f37e152b6b
commit 28196e4f61

View file

@ -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;
}