diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-26 04:16:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-26 04:16:34 +0000 |
commit | 13232aba9738f001c91ace7b23061418591303bb (patch) | |
tree | c98bf8b335b9cb0b016f91b65c318ec26b27fd48 /modules/user/user.module | |
parent | 6675dbc68c73104b168fbb40ba17bef8e5eaa190 (diff) | |
download | brdo-13232aba9738f001c91ace7b23061418591303bb.tar.gz brdo-13232aba9738f001c91ace7b23061418591303bb.tar.bz2 |
- Patch #88474 by webernet: fixed incorrect commit.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 90219cf12..b8866e193 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -700,8 +700,6 @@ function user_menu($may_cache) { $items[] = array('path' => 'user/login', 'title' => t('log in'), 'callback' => 'drupal_get_form', 'callback arguments' => array('user_login'), 'access' => !$user->uid, 'type' => MENU_DEFAULT_LOCAL_TASK); - $items[] = array('path' => 'user/login', 'title' => t('Log in'), - 'callback' => 'drupal_get_form', 'callback arguments' => array('user_login'), 'access' => TRUE, 'type' => MENU_DEFAULT_LOCAL_TASK); $items[] = array('path' => 'user/register', 'title' => t('Create new account'), 'callback' => 'drupal_get_form', 'callback arguments' => array('user_register'), 'access' => !$user->uid && variable_get('user_register', 1), 'type' => MENU_LOCAL_TASK); $items[] = array('path' => 'user/password', 'title' => t('Request new password'), |