date_validate

Definition

date_validate($form)
drupal/includes/form.inc, line 1718

Description

Validates the date type to stop dates like February 30, 2006.

Related topics

Namesort iconDescription
Form generationFunctions to enable the processing and display of HTML forms.

Code

function date_validate($form) {
  if (!checkdate($form['#value']['month'], $form['#value']['day'], $form['#value']['year'])) {
    form_error($form, t('The specified date is invalid.'));
  }
}