function install_configure_form_validate

Same name and namespace in other branches
  1. 7.x drupal-7.x/includes/install.core.inc \install_configure_form_validate()

Form API validate for the site configuration form.

Archivo

drupal-6.x/install.php, line 1141

Código

function install_configure_form_validate($form, &$form_state) {
  if ($error = user_validate_name($form_state['values']['account']['name'])) {
    form_error($form['admin_account']['account']['name'], $error);
  }
  if ($error = user_validate_mail($form_state['values']['account']['mail'])) {
    form_error($form['admin_account']['account']['mail'], $error);
  }
  if ($error = user_validate_mail($form_state['values']['site_mail'])) {
    form_error($form['site_information']['site_mail'], $error);
  }
}