| 6 user.module | user_login_final_validate($form, &$form_state) |
| 7 user.module | user_login_final_validate($form, &$form_state) |
| 8 user.module | user_login_final_validate($form, &$form_state) |
A validate handler on the login form. Should be the last validator. Sets an error if user has not been authenticated yet.
1 string reference to 'user_login_final_validate'
File
- modules/
user/ user.module, line 1354 - Enables the user registration and login system.
Code
function user_login_final_validate($form, &$form_state) {
global $user;
if (!$user->uid) {
form_set_error('name', t('Sorry, unrecognized username or password. <a href="@password">Have you forgotten your password?</a>', array('@password' => url('user/password'))));
}
}
Login or register to post comments