function user_register_validate

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/user/user.module \user_register_validate()
1 string reference to 'user_register_validate'
user_register in drupal-6.x/modules/user/user.module
Form builder; The user registration form.

Archivo

drupal-6.x/modules/user/user.module, line 2533
Enables the user registration and login system.

Código

function user_register_validate($form, &$form_state) {
  $account = (object) $form_state['values'];
  user_module_invoke('validate', $form_state['values'], $account, 'account');
}