function user_login_form_submit

Submit handler for the login form. Load $user object and perform standard login tasks. The user is then redirected to the My Account page. Setting the destination in the query string overrides the redirect.

1 call to user_login_form_submit()

File

drupal/core/modules/user/user.module, line 1390
Enables the user registration and login system.

Code

function user_login_form_submit($form, &$form_state) {
  global $user;
  $user = user_load($form_state['uid']);
  $form_state['redirect'] = 'user/' . $user->uid;
  user_login_finalize($form_state);
}