aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/info/mcp_queue.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-10-15 15:53:32 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-10-15 15:53:32 +0200
commit33073fafbe53cb103e9e00bceb249a0879a2eb9c (patch)
tree3bced7cf702eec4ddfcc7c26a05936c756447c71 /phpBB/includes/mcp/info/mcp_queue.php
parentb1ce8a8c13eca920abf3659fcbfec267684071bb (diff)
downloadforums-33073fafbe53cb103e9e00bceb249a0879a2eb9c.tar
forums-33073fafbe53cb103e9e00bceb249a0879a2eb9c.tar.gz
forums-33073fafbe53cb103e9e00bceb249a0879a2eb9c.tar.bz2
forums-33073fafbe53cb103e9e00bceb249a0879a2eb9c.tar.xz
forums-33073fafbe53cb103e9e00bceb249a0879a2eb9c.zip
[feature/soft-delete] Add module for soft deleted topics
Unapproved/soft deleted posts are posts, that have a different visibility than the topic. All others will be hidden from the posts list and can be managed with the topic modules. PHPBB3-9567
Diffstat (limited to 'phpBB/includes/mcp/info/mcp_queue.php')
-rw-r--r--phpBB/includes/mcp/info/mcp_queue.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/mcp/info/mcp_queue.php b/phpBB/includes/mcp/info/mcp_queue.php
index 43f6c81694..68cac5abd2 100644
--- a/phpBB/includes/mcp/info/mcp_queue.php
+++ b/phpBB/includes/mcp/info/mcp_queue.php
@@ -21,6 +21,7 @@ class mcp_queue_info
'modes' => array(
'unapproved_topics' => array('title' => 'MCP_QUEUE_UNAPPROVED_TOPICS', 'auth' => 'aclf_m_approve', 'cat' => array('MCP_QUEUE')),
'unapproved_posts' => array('title' => 'MCP_QUEUE_UNAPPROVED_POSTS', 'auth' => 'aclf_m_approve', 'cat' => array('MCP_QUEUE')),
+ 'deleted_topics' => array('title' => 'MCP_QUEUE_DELETED_TOPICS', 'auth' => 'aclf_m_approve', 'cat' => array('MCP_QUEUE')),
'deleted_posts' => array('title' => 'MCP_QUEUE_DELETED_POSTS', 'auth' => 'aclf_m_approve', 'cat' => array('MCP_QUEUE')),
'approve_details' => array('title' => 'MCP_QUEUE_APPROVE_DETAILS', 'auth' => 'acl_m_approve,$id || (!$id && aclf_m_approve)', 'cat' => array('MCP_QUEUE')),
),