diff options
Diffstat (limited to 'modules/contact/contact.module')
-rw-r--r-- | modules/contact/contact.module | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module index 5a51385cd..7883fe869 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -36,8 +36,12 @@ function contact_help($path, $arg) { * Implementation of hook_perm */ function contact_perm() { - return array('access site-wide contact form', 'administer site-wide contact form'); + 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.'), + ); } + /** * Implementation of hook_menu(). */ |