- Patch #8758 by Morbus Iff: allow users to modify their profile under

the new tabs system.
4.5.x
Dries Buytaert 2004-06-23 05:11:35 +00:00
parent fa2be0b8f0
commit ae6aa4e59e
2 changed files with 2 additions and 2 deletions

View File

@ -597,7 +597,7 @@ function user_menu() {
'callback' => 'user_page', 'access' => TRUE);
// Add the edit menu:
if ($access) $function = 'user_admin_edit';
else $function = 'user_edit';
else $function = 'user_page';
$items[] = array('path' => 'user/'. arg(1) .'/edit', 'title' => t('edit'),
'callback' => $function, 'access' => $access || $user->uid == arg(1),
'type' => MENU_LOCAL_TASK);

View File

@ -597,7 +597,7 @@ function user_menu() {
'callback' => 'user_page', 'access' => TRUE);
// Add the edit menu:
if ($access) $function = 'user_admin_edit';
else $function = 'user_edit';
else $function = 'user_page';
$items[] = array('path' => 'user/'. arg(1) .'/edit', 'title' => t('edit'),
'callback' => $function, 'access' => $access || $user->uid == arg(1),
'type' => MENU_LOCAL_TASK);