diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-06-28 11:10:33 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-07-14 11:51:30 -0400 |
commit | e8d2a2fd8861e5ef2473aa670808dc6098aa1241 (patch) | |
tree | f52150a22e1c1a982383c3b07ba621048f076fb6 /phpBB/includes/permissions.php | |
parent | 573987d2d2defe3425c083b093bb5a5d3ec2db2a (diff) | |
download | forums-e8d2a2fd8861e5ef2473aa670808dc6098aa1241.tar forums-e8d2a2fd8861e5ef2473aa670808dc6098aa1241.tar.gz forums-e8d2a2fd8861e5ef2473aa670808dc6098aa1241.tar.bz2 forums-e8d2a2fd8861e5ef2473aa670808dc6098aa1241.tar.xz forums-e8d2a2fd8861e5ef2473aa670808dc6098aa1241.zip |
[ticket/11582] Use new class for categories
PHPBB3-11582
Diffstat (limited to 'phpBB/includes/permissions.php')
-rw-r--r-- | phpBB/includes/permissions.php | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/phpBB/includes/permissions.php b/phpBB/includes/permissions.php index d5389344f7..1e2cf9e4aa 100644 --- a/phpBB/includes/permissions.php +++ b/phpBB/includes/permissions.php @@ -107,20 +107,20 @@ class phpbb_permissions ); protected $categories = array( - 'actions' => 'Actions', - 'content' => 'Content', - 'forums' => 'Forums', - 'misc' => 'Misc', - 'permissions' => 'Permissions', - 'pm' => 'Private messages', - 'polls' => 'Polls', - 'post' => 'Post', - 'post_actions' => 'Post actions', - 'posting' => 'Posting', - 'profile' => 'Profile', - 'settings' => 'Settings', - 'topic_actions' => 'Topic actions', - 'user_group' => 'Users & Groups', + 'actions' => 'ACL_CAT_ACTIONS', + 'content' => 'ACL_CAT_CONTENT', + 'forums' => 'ACL_CAT_FORUMS', + 'misc' => 'ACL_CAT_MISC', + 'permissions' => 'ACL_CAT_PERMISSIONS', + 'pm' => 'ACL_CAT_PM', + 'polls' => 'ACL_CAT_POLLS', + 'post' => 'ACL_CAT_POST', + 'post_actions' => 'ACL_CAT_POST_ACTIONS', + 'posting' => 'ACL_CAT_POSTING', + 'profile' => 'ACL_CAT_PROFILE', + 'settings' => 'ACL_CAT_SETTINGS', + 'topic_actions' => 'ACL_CAT_TOPIC_ACTIONS', + 'user_group' => 'ACL_CAT_USER_GROUP', ); protected $permissions = array( |