function contact_personal_form_validate in Drupal 7
Form validation handler for contact_personal_form().
See also
contact_personal_form_submit()
File
- modules/
contact/ contact.pages.inc, line 258 - Page callbacks for the Contact module.
Code
function contact_personal_form_validate($form, &$form_state) {
if (!valid_email_address($form_state['values']['mail'])) {
form_set_error('mail', t('You must enter a valid e-mail address.'));
}
}