function user_login_submit in Drupal 6
Same name and namespace in other branches
- 4 modules/user.module \user_login_submit()
- 5 modules/user/user.module \user_login_submit()
- 7 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;
}
}