aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_forum.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-07-19 20:13:18 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-07-19 20:13:18 +0000
commitbfec4fb8fca43dc46302d44fcfa8c6c4377d4750 (patch)
tree74de3d4bce8af8db061cd0e7262e378a2bb31014 /phpBB/includes/mcp/mcp_forum.php
parent9dcd7b45cb3b3d82474c0bdf955a1fd753eaa87a (diff)
downloadforums-bfec4fb8fca43dc46302d44fcfa8c6c4377d4750.tar
forums-bfec4fb8fca43dc46302d44fcfa8c6c4377d4750.tar.gz
forums-bfec4fb8fca43dc46302d44fcfa8c6c4377d4750.tar.bz2
forums-bfec4fb8fca43dc46302d44fcfa8c6c4377d4750.tar.xz
forums-bfec4fb8fca43dc46302d44fcfa8c6c4377d4750.zip
- approve/disapprove posts/topics
- changed mcp_front to be more moderator friendly - able to change the forum in mcp_queue (for moderators moderating more than one forum) git-svn-id: file:///svn/phpbb/trunk@4937 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_forum.php')
-rw-r--r--phpBB/includes/mcp/mcp_forum.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_forum.php b/phpBB/includes/mcp/mcp_forum.php
index 07f80a87f0..7de44547e3 100644
--- a/phpBB/includes/mcp/mcp_forum.php
+++ b/phpBB/includes/mcp/mcp_forum.php
@@ -176,11 +176,11 @@ function mcp_forum_view($id, $mode, $action, $url, $forum_info)
$topic_title = censor_text($row['topic_title']);
$template->assign_block_vars('topicrow', array(
- 'U_VIEW_TOPIC' => "mcp.$phpEx$SID&amp;t=" . $row['topic_id'] . '&amp;mode=topic_view',
+ 'U_VIEW_TOPIC' => "mcp.$phpEx$SID&amp;f=$forum_id&amp;t={$row['topic_id']}&amp;mode=topic_view",
'S_SELECT_TOPIC' => ($action == 'merge_select' && $row['topic_id'] != $topic_id) ? true : false,
'U_SELECT_TOPIC' => $url . '&amp;mode=topic_view&amp;action=merge&amp;to_topic_id=' . $row['topic_id'] . $selected_ids,
- 'U_MCP_QUEUE' => $url . '&amp;i=queue&amp;mode=approve&amp;t=' . $row['topic_id'],
+ 'U_MCP_QUEUE' => $url . '&amp;i=queue&amp;mode=approve_details&amp;t=' . $row['topic_id'],
'U_MCP_REPORT' => "mcp.$phpEx$SID&amp;i=main&amp;mode=topic_view&amp;t={$row['topic_id']}&amp;action=reports",
'ATTACH_ICON_IMG' => ($auth->acl_gets('f_download', 'u_download', $row['forum_id']) && $row['topic_attachment']) ? $user->img('icon_attach', sprintf($user->lang['TOTAL_ATTACHMENTS'], $row['topic_attachment'])) : '',