aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-04-16 01:11:40 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-04-16 01:11:40 +0000
commitfdecd320a62b27690d2037479d4448292cfd8e34 (patch)
tree8b010d6289026c3c004327b1010933b5f314e96c
parentb7acb6b54b27db1f4f139cc6091ea3d4694b1d6f (diff)
downloadforums-fdecd320a62b27690d2037479d4448292cfd8e34.tar
forums-fdecd320a62b27690d2037479d4448292cfd8e34.tar.gz
forums-fdecd320a62b27690d2037479d4448292cfd8e34.tar.bz2
forums-fdecd320a62b27690d2037479d4448292cfd8e34.tar.xz
forums-fdecd320a62b27690d2037479d4448292cfd8e34.zip
Yep more commits where werent
git-svn-id: file:///svn/phpbb/trunk@159 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/includes/page_header.php7
-rw-r--r--phpBB/templates/Default/viewtopic_header.tpl2
2 files changed, 5 insertions, 4 deletions
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php
index 9620b524ba..be52d10c45 100644
--- a/phpBB/includes/page_header.php
+++ b/phpBB/includes/page_header.php
@@ -98,7 +98,7 @@ switch($pagetype)
$jumpbox = make_jumpbox($db);
$template->assign_vars(array("JUMPBOX_LIST" => $jumpbox,
"JUMPBOX_ACTION" => "viewforum.".$phpEx,
- "SELECT_NAME" => "forum_id"));
+ "SELECT_NAME" => POST_FORUM_URL));
$template->assign_var_from_handle("JUMPBOX", "jumpbox");
@@ -116,14 +116,15 @@ switch($pagetype)
$jumpbox = make_jumpbox($db);
$template->assign_vars(array("JUMPBOX_LIST" => $jumpbox,
"JUMPBOX_ACTION" => "viewforum.".$phpEx,
- "SELECT_NAME" => "forum_id"));
+ "SELECT_NAME" => POST_FORUM_URL));
$template->assign_var_from_handle("JUMPBOX", "jumpbox");
$template->assign_vars(array("FORUM_ID" => $forum_id,
"FORUM_NAME" => $forum_name,
"TOPIC_ID" => $topic_id,
- "TOPIC_TITLE" => $topic_title));
+ "TOPIC_TITLE" => $topic_title,
+ "POST_FORUM_URL" => POST_FORUM_URL));
$template->pparse("header");
break;
diff --git a/phpBB/templates/Default/viewtopic_header.tpl b/phpBB/templates/Default/viewtopic_header.tpl
index a6e2b3f244..c524d8e746 100644
--- a/phpBB/templates/Default/viewtopic_header.tpl
+++ b/phpBB/templates/Default/viewtopic_header.tpl
@@ -9,7 +9,7 @@
<table border="0" width="100%" bgcolor="#CCCCCC" cellpadding="1" cellspacing="1">
<tr>
<td align="left" valign="bottom" style="{font-size: 8pt; height: 55px;}" nowrap>
- <a href="index.{PHPEX}">{SITENAME} - Forum Index</a> >> <a href="viewforum.{PHPEX}?forum_id={FORUM_ID}">{FORUM_NAME}</a> >> {TOPIC_TITLE}
+ <a href="index.{PHPEX}">{SITENAME} - Forum Index</a> >> <a href="viewforum.{PHPEX}?{POST_FORUM_URL}={FORUM_ID}">{FORUM_NAME}</a> >> {TOPIC_TITLE}
</td>
</tr>
</table>