user_pass_validate
modules/user/user.module, строка 1069
- Версии
- 5
user_pass_validate(
$form_id,$form_values)- 6
user_pass_validate($form, &$form_state)
Код
<?php
function user_pass_validate($form_id, $form_values) {
$name = $form_values['name'];
// Blocked accounts cannot request a new password,
// check provided username and email against access rules.
if (drupal_is_denied('user', $name) || drupal_is_denied('mail', $name)) {
form_set_error('name', t('%name is not allowed to request a new password.', array('%name' => $name)));
}
$account = user_load(array('mail' => $name, 'status' => 1));
if (!$account) {
$account = user_load(array('name' => $name, 'status' => 1));
}
if ($account->uid) {
form_set_value(array('#parents' => array('account')), $account);
}
else {
form_set_error('name', t('Sorry, %name is not recognized as a user name or an email address.', array('%name' => $name)));
}
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии