diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-07 12:02:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-07 12:02:56 +0000 |
commit | 57688517f8a1191b4df2ad83526da2ad30dbd219 (patch) | |
tree | 57dc3958a17cc3d7e3c152e0ee8f11375529e9a3 /modules/user/user.module | |
parent | 955eb4f75eb2df3f58cf115e87c2afa416f43636 (diff) | |
download | brdo-57688517f8a1191b4df2ad83526da2ad30dbd219.tar.gz brdo-57688517f8a1191b4df2ad83526da2ad30dbd219.tar.bz2 |
- Patch #84146 by RobRoy: missing capitalization fixes.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index a926f6888..7c84c391d 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -690,7 +690,7 @@ function user_menu($may_cache) { $view_access = user_access('access user profiles'); if ($may_cache) { - $items[] = array('path' => 'user', 'title' => t('user account'), + $items[] = array('path' => 'user', 'title' => t('User account'), 'callback' => 'drupal_get_form', 'callback arguments' => array('user_login'), 'access' => !$user->uid, 'type' => MENU_CALLBACK); @@ -698,7 +698,7 @@ function user_menu($may_cache) { 'callback' => 'user_autocomplete', 'access' => $view_access, 'type' => MENU_CALLBACK); // Registration and login pages. - $items[] = array('path' => 'user/login', 'title' => t('log in'), + $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/register', 'title' => t('Create new account'), |