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