Same name and namespace in other branches
  1. 4.7.x modules/user.module \user_login_submit()
  2. 5.x modules/user/user.module \user_login_submit()
  3. 7.x modules/user/user.module \user_login_submit()

Submit handler for the login form. Redirects the user to a page.

The user is redirected to the My Account page. Setting the destination in the query string (as done by the user login block) overrides the redirect.

1 string reference to 'user_login_submit'
user_login_block in modules/user/user.module

File

modules/user/user.module, line 1441
Enables the user registration and login system.

Code

function user_login_submit($form, &$form_state) {
  global $user;
  if ($user->uid) {
    $form_state['redirect'] = 'user/' . $user->uid;
    return;
  }
}