From 6435b481c571dd44494f07b970339b104a8ffdd6 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 18 Dec 2012 15:32:13 +0100 Subject: [PATCH] [feature/soft-delete] Fix a problem with "delete topics" in mcp PHPBB3-9657 --- phpBB/includes/mcp/mcp_queue.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 4180b5b08f..8b7b4ffda8 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -71,9 +71,10 @@ class mcp_queue { if (!empty($topic_id_list)) { + $post_visibility = ($mode == 'deleted_topics') ? ITEM_DELETED : ITEM_UNAPPROVED; $sql = 'SELECT post_id FROM ' . POSTS_TABLE . ' - WHERE post_visibility = ' . ITEM_UNAPPROVED . ' + WHERE post_visibility = ' . $post_visibility . ' AND ' . $db->sql_in_set('topic_id', $topic_id_list); $result = $db->sql_query($sql);