aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-02-26 20:53:31 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-02-26 20:53:31 +0000
commit9961eb789d986a2f55f62d99e2dc287b7cb60974 (patch)
treec4d6f6883bed9d2ddf27f69333e70f1863e007c5 /phpBB
parenta66a762684be967bb7c9381517f5db6b70b2f1fc (diff)
downloadforums-9961eb789d986a2f55f62d99e2dc287b7cb60974.tar
forums-9961eb789d986a2f55f62d99e2dc287b7cb60974.tar.gz
forums-9961eb789d986a2f55f62d99e2dc287b7cb60974.tar.bz2
forums-9961eb789d986a2f55f62d99e2dc287b7cb60974.tar.xz
forums-9961eb789d986a2f55f62d99e2dc287b7cb60974.zip
Add forum_id to topicreview
git-svn-id: file:///svn/phpbb/trunk@3555 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/posting.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index cd2653c67d..1e49528682 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -687,9 +687,8 @@ $template->assign_vars(array(
'L_ICON' => ($mode == 'reply' || $mode == 'quote') ? $user->lang['POST_ICON'] : $user->lang['TOPIC_ICON'],
'U_VIEW_FORUM' => "viewforum.$phpEx$SID&amp;f=" . intval($forum_id),
- 'U_VIEWTOPIC' => ($mode != 'post') ? "viewtopic.$phpEx$SID&amp;t=" . intval($topic_id) : '',
- 'U_REVIEW_TOPIC' => ($mode != 'post') ? "posting.$phpEx$SID&amp;mode=topicreview&amp;t=" . intval($topic_id) : '',
- 'U_VIEW_MODERATORS' => 'memberslist.' . $phpEx . $SID . '&amp;mode=moderators&amp;f=' . intval($forum_id),
+ 'U_VIEWTOPIC' => ($mode != 'post') ? "viewtopic.$phpEx$SID&amp;" . intval($forum_id) . "&amp;t=" . intval($topic_id) : '',
+ 'U_REVIEW_TOPIC' => ($mode != 'post') ? "posting.$phpEx$SID&amp;mode=topicreview&amp;f=" . intval($forum_id) . "&amp;t=" . intval($topic_id) : '',
'S_SHOW_TOPIC_ICONS' => $s_topic_icons,
'S_HTML_CHECKED' => ($html_checked) ? 'checked="checked"' : '',