aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-05-07 21:10:16 -0700
committerMatt Friedman <maf675@gmail.com>2015-05-07 21:10:16 -0700
commit350786c9695b1ccc82cf2ea33f20efd4af05c926 (patch)
tree05d353e35d6864338a076f10c98a4620d94b3550 /phpBB/phpbb/permissions.php
parentMerge pull request #3564 from VSEphpbb/ticket/13516 (diff)
downloadphpbb-350786c9695b1ccc82cf2ea33f20efd4af05c926.tar.gz
phpbb-350786c9695b1ccc82cf2ea33f20efd4af05c926.tar.bz2
phpbb-350786c9695b1ccc82cf2ea33f20efd4af05c926.zip
[ticket/13822] Correctly display softdelete and post detail perms
PHPBB3-13822
Diffstat (limited to 'phpBB/phpbb/permissions.php')
-rw-r--r--phpBB/phpbb/permissions.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/permissions.php b/phpBB/phpbb/permissions.php
index 9b3dcadf32..82f59b5c20 100644
--- a/phpBB/phpbb/permissions.php
+++ b/phpBB/phpbb/permissions.php
@@ -277,13 +277,14 @@ class permissions
'm_approve' => array('lang' => 'ACL_M_APPROVE', 'cat' => 'post_actions'),
'm_report' => array('lang' => 'ACL_M_REPORT', 'cat' => 'post_actions'),
'm_chgposter' => array('lang' => 'ACL_M_CHGPOSTER', 'cat' => 'post_actions'),
+ 'm_info' => array('lang' => 'ACL_M_INFO', 'cat' => 'post_actions'),
+ 'm_softdelete' => array('lang' => 'ACL_M_SOFTDELETE', 'cat' => 'post_actions'),
'm_move' => array('lang' => 'ACL_M_MOVE', 'cat' => 'topic_actions'),
'm_lock' => array('lang' => 'ACL_M_LOCK', 'cat' => 'topic_actions'),
'm_split' => array('lang' => 'ACL_M_SPLIT', 'cat' => 'topic_actions'),
'm_merge' => array('lang' => 'ACL_M_MERGE', 'cat' => 'topic_actions'),
- 'm_info' => array('lang' => 'ACL_M_INFO', 'cat' => 'misc'),
'm_warn' => array('lang' => 'ACL_M_WARN', 'cat' => 'misc'),
'm_ban' => array('lang' => 'ACL_M_BAN', 'cat' => 'misc'),