summaryrefslogtreecommitdiff
path: root/modules/user/user.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user/user.module')
-rw-r--r--modules/user/user.module4
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'),