aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/page_header.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-04-19 15:05:39 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-04-19 15:05:39 +0000
commit87b7ae578f3c8a72f847c3610bd1ef479569a3ff (patch)
tree18739861ecebc98552ba69a7e527d0c6ffd51ae0 /phpBB/includes/page_header.php
parent4c05450291d939f0d6bf4ea3ba538719cf3b43ba (diff)
downloadforums-87b7ae578f3c8a72f847c3610bd1ef479569a3ff.tar
forums-87b7ae578f3c8a72f847c3610bd1ef479569a3ff.tar.gz
forums-87b7ae578f3c8a72f847c3610bd1ef479569a3ff.tar.bz2
forums-87b7ae578f3c8a72f847c3610bd1ef479569a3ff.tar.xz
forums-87b7ae578f3c8a72f847c3610bd1ef479569a3ff.zip
Removed need to send db as a parameter to functions
git-svn-id: file:///svn/phpbb/trunk@189 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/page_header.php')
-rw-r--r--phpBB/includes/page_header.php6
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,