- Patch #497612 by Moshe Weitzman et al: harden user login by correctly using the form API.

merge-requests/26/head
Dries Buytaert 2009-06-30 09:52:54 +00:00
parent a8bc7688c9
commit 8f817bf9a8
1 changed files with 2 additions and 2 deletions

View File

@ -101,9 +101,9 @@ function user_pass_reset(&$form_state, $uid, $timestamp, $hashed_pass, $action =
watchdog('user', 'User %name used one-time login link at time %timestamp.', array('%name' => $account->name, '%timestamp' => $timestamp));
// Set the new user.
$user = $account;
// user_authenticate_finalize() also updates the login timestamp of the
// user_login_finalize() also updates the login timestamp of the
// user, which invalidates further use of the one-time login link.
user_authenticate_finalize($form_state['values']);
user_login_finalize();
drupal_set_message(t('You have just used your one-time login link. It is no longer necessary to use this link to login. Please change your password.'));
drupal_goto('user/' . $user->uid . '/edit');
}