function user_pass_submit in Drupal 7
Same name and namespace in other branches
- 4 modules/user.module \user_pass_submit()
- 5 modules/user/user.module \user_pass_submit()
- 6 modules/user/user.pages.inc \user_pass_submit()
Form submission handler for user_pass().
See also
File
- modules/user/ user.pages.inc, line 120 
- User page callback file for the user module.
Code
function user_pass_submit($form, &$form_state) {
  global $language;
  $account = $form_state['values']['account'];
  // Mail one time login URL and instructions using current language.
  $mail = _user_mail_notify('password_reset', $account, $language);
  if (!empty($mail)) {
    watchdog('user', 'Password reset instructions mailed to %name at %email.', array(
      '%name' => $account->name,
      '%email' => $account->mail,
    ));
    drupal_set_message(t('Further instructions have been sent to your e-mail address.'));
  }
  $form_state['redirect'] = 'user';
  return;
}