function user_login_submit

Same name and namespace in other branches
  1. 7.x drupal-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 drupal-6.x/modules/user/user.module

Archivo

drupal-6.x/modules/user/user.module, line 1434
Enables the user registration and login system.

Código

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