Index: contact.module =================================================================== RCS file: /cvs/drupal/drupal/modules/contact/contact.module,v retrieving revision 1.103.2.1 diff -u -r1.103.2.1 contact.module --- contact.module 9 Apr 2008 21:11:46 -0000 1.103.2.1 +++ contact.module 19 Jun 2009 18:08:48 -0000 @@ -36,7 +36,7 @@ * 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', 'administer site-wide contact form','user contact form'); } /** * Implementation of hook_menu(). @@ -142,6 +142,7 @@ if ($type == 'form' && $category == 'account') { $form['contact'] = array('#type' => 'fieldset', '#title' => t('Contact settings'), + '#access' => user_access('user contact form'), '#weight' => 5, '#collapsible' => TRUE, );