--- modules/user/user.module 2006/07/18 10:14:26 1.639 +++ modules/user/user.module 2006/07/27 05:05:28 @@ -687,6 +687,12 @@ function user_menu($may_cache) { $items[] = array('path' => 'user/help', 'title' => t('help'), 'callback' => 'user_help_page', 'type' => MENU_CALLBACK); + // Login link for anonymous users. + $items[] = array('path' => 'login', 'title' => t('log in'), + 'callback' => 'drupal_goto', 'access' => !($user->uid), + 'callback arguments' => array('user/login', drupal_get_destination()), + 'type' => MENU_DYNAMIC_ITEM | MENU_NORMAL_ITEM, 'weight' => -10); + // Admin user pages $items[] = array('path' => 'admin/user', 'title' => t('users'), 'callback' => 'user_admin', 'access' => $admin_access);