user_login_authenticate_validate

Versions
6 – 7
user_login_authenticate_validate($form, &$form_state)

A validate handler on the login form. Check supplied username/password against local users table. If successful, sets the global $user object.

Code

modules/user/user.module, line 1325

<?php
function user_login_authenticate_validate($form, &$form_state) {
  user_authenticate($form_state['values']);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.