aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_queue.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-08-04 19:19:42 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-08-04 19:19:42 +0000
commit51a1e1433b9e3260191c19adf6be70cfc1b606b7 (patch)
treeb91d0ee9d176828a961839ac16fd62022327f51f /phpBB/includes/mcp/mcp_queue.php
parent07bc2e02316e40ec4004635ba760cab0553ea10c (diff)
downloadforums-51a1e1433b9e3260191c19adf6be70cfc1b606b7.tar
forums-51a1e1433b9e3260191c19adf6be70cfc1b606b7.tar.gz
forums-51a1e1433b9e3260191c19adf6be70cfc1b606b7.tar.bz2
forums-51a1e1433b9e3260191c19adf6be70cfc1b606b7.tar.xz
forums-51a1e1433b9e3260191c19adf6be70cfc1b606b7.zip
- [mcp] let quickmod work in topic_view
- more logical placement of load/save buttons in posting git-svn-id: file:///svn/phpbb/trunk@4959 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r--phpBB/includes/mcp/mcp_queue.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php
index 171751219f..4ba504a988 100644
--- a/phpBB/includes/mcp/mcp_queue.php
+++ b/phpBB/includes/mcp/mcp_queue.php
@@ -256,7 +256,7 @@ class mcp_queue extends module
$template->assign_block_vars('postrow', array(
'U_VIEWFORUM' => "viewforum.$phpEx$SID&amp;f=" . $row['forum_id'],
// Q: Why accessing the topic by a post_id instead of its topic_id?
- // A: To prevent the post from being hidden because of low karma or wrong encoding
+ // A: To prevent the post from being hidden because of wrong encoding or different charset
'U_VIEWTOPIC' => "viewtopic.$phpEx$SID&amp;f=" . $row['forum_id'] . '&amp;p=' . $row['post_id'] . (($mode == 'unapproved_posts') ? '#' . $row['post_id'] : ''),
'U_VIEW_DETAILS'=> "mcp.$phpEx$SID&amp;i=queue&amp;start=$start&amp;mode=approve_details&amp;f={$forum_id}&amp;p={$row['post_id']}",
'U_VIEWPROFILE' => ($row['poster_id'] != ANONYMOUS) ? "memberlist.$phpEx$SID&amp;mode=viewprofile&amp;u={$row['poster_id']}" : '',