diff options
Diffstat (limited to 'modules/contact/contact.module')
-rw-r--r-- | modules/contact/contact.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module index 909b90e6f..9fa22df51 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -84,14 +84,13 @@ function contact_menu() { 'access arguments' => array('access site-wide contact form'), 'type' => MENU_SUGGESTED_ITEM, ); - $items['user/%/contact'] = array( + $items['user/%user/contact'] = array( 'title' => t('Contact'), 'page callback' => 'contact_user_page', 'page arguments' => array(1), 'type' => MENU_LOCAL_TASK, 'access callback' => '_contact_user_tab_access', 'access arguments' => array(1), - 'map arguments' => array('user_load', 1), 'weight' => 2, ); return $items; |