diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-17 20:37:32 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-17 20:37:32 +0000 |
commit | 893942bb4f0ab6261ea5ea39a5331ab021b392d4 (patch) | |
tree | 83c7b4de879c473b93557e168d8383607fe8a222 /modules/comment/comment.module | |
parent | fb577596044efb049a0ea74c7c74f7f5ebcd91d2 (diff) | |
download | brdo-893942bb4f0ab6261ea5ea39a5331ab021b392d4.tar.gz brdo-893942bb4f0ab6261ea5ea39a5331ab021b392d4.tar.bz2 |
#108979 by ewhipple, catch, and sun: Order permissions consistently, keep node type related permissions together.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index c9f87321c..4604104dc 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -241,10 +241,10 @@ function comment_node_type($op, $info) { */ function comment_perm() { return array( + 'administer comments' => t('Manage and approve comments, and configure comment administration settings.'), 'access comments' => t('View comments attached to content.'), 'post comments' => t('Add comments to content (approval required).'), 'post comments without approval' => t('Add comments to content (no approval required).'), - 'administer comments' => t('Manage and approve comments, and configure comment administration settings.'), ); } |