mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Add forum_id to topicreview
git-svn-id: file:///svn/phpbb/trunk@3555 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
a66a762684
commit
9961eb789d
1 changed files with 2 additions and 3 deletions
|
@ -687,9 +687,8 @@ $template->assign_vars(array(
|
||||||
'L_ICON' => ($mode == 'reply' || $mode == 'quote') ? $user->lang['POST_ICON'] : $user->lang['TOPIC_ICON'],
|
'L_ICON' => ($mode == 'reply' || $mode == 'quote') ? $user->lang['POST_ICON'] : $user->lang['TOPIC_ICON'],
|
||||||
|
|
||||||
'U_VIEW_FORUM' => "viewforum.$phpEx$SID&f=" . intval($forum_id),
|
'U_VIEW_FORUM' => "viewforum.$phpEx$SID&f=" . intval($forum_id),
|
||||||
'U_VIEWTOPIC' => ($mode != 'post') ? "viewtopic.$phpEx$SID&t=" . intval($topic_id) : '',
|
'U_VIEWTOPIC' => ($mode != 'post') ? "viewtopic.$phpEx$SID&" . intval($forum_id) . "&t=" . intval($topic_id) : '',
|
||||||
'U_REVIEW_TOPIC' => ($mode != 'post') ? "posting.$phpEx$SID&mode=topicreview&t=" . intval($topic_id) : '',
|
'U_REVIEW_TOPIC' => ($mode != 'post') ? "posting.$phpEx$SID&mode=topicreview&f=" . intval($forum_id) . "&t=" . intval($topic_id) : '',
|
||||||
'U_VIEW_MODERATORS' => 'memberslist.' . $phpEx . $SID . '&mode=moderators&f=' . intval($forum_id),
|
|
||||||
|
|
||||||
'S_SHOW_TOPIC_ICONS' => $s_topic_icons,
|
'S_SHOW_TOPIC_ICONS' => $s_topic_icons,
|
||||||
'S_HTML_CHECKED' => ($html_checked) ? 'checked="checked"' : '',
|
'S_HTML_CHECKED' => ($html_checked) ? 'checked="checked"' : '',
|
||||||
|
|
Loading…
Add table
Reference in a new issue