diff options
Diffstat (limited to 'phpBB/includes/page_header.php')
| -rw-r--r-- | phpBB/includes/page_header.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php index be7e59cd7f..ae636d0e07 100644 --- a/phpBB/includes/page_header.php +++ b/phpBB/includes/page_header.php @@ -96,7 +96,7 @@ switch($pagetype) "jumpbox" => "jumpbox.tpl", "footer" => "viewforum_footer.tpl")); - $jumpbox = make_jumpbox($db); + $jumpbox = make_jumpbox(); $template->assign_vars(array("JUMPBOX_LIST" => $jumpbox, "JUMPBOX_ACTION" => "viewforum.".$phpEx, "SELECT_NAME" => POST_FORUM_URL)); @@ -114,7 +114,7 @@ switch($pagetype) "body" => "viewtopic_body.tpl", "jumpbox" => "jumpbox.tpl", "footer" => "viewtopic_footer.tpl")); - $jumpbox = make_jumpbox($db); + $jumpbox = make_jumpbox(); $template->assign_vars(array("JUMPBOX_LIST" => $jumpbox, "JUMPBOX_ACTION" => "viewforum.".$phpEx, "SELECT_NAME" => POST_FORUM_URL)); @@ -134,7 +134,7 @@ switch($pagetype) "body" => "viewonline_body.tpl", "jumpbox" => "jumpbox.tpl", "footer" => "viewonline_footer.tpl")); - $jumpbox = make_jumpbox($db); + $jumpbox = make_jumpbox(); $template->assign_vars(array("TOTAL_POSTS" => $total_posts, "TOTAL_USERS" => $total_users, "POST_USER_URL" => POST_USERS_URL, |
