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/contact | |
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/contact')
-rw-r--r-- | modules/contact/contact.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module index c82061760..bbe1389c5 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -37,8 +37,8 @@ function contact_help($path, $arg) { */ function contact_perm() { return array( - 'access site-wide contact form' => t('Send feedback to administrators via e-mail using the site-wide contact form.'), 'administer site-wide contact form' => t('Configure site-wide contact form administration settings.'), + 'access site-wide contact form' => t('Send feedback to administrators via e-mail using the site-wide contact form.'), ); } |