date_validate($form)
drupal/includes/form.inc, line 1718
Validates the date type to stop dates like February 30, 2006.
| Name | Description |
|---|---|
| Form generation | Functions to enable the processing and display of HTML forms. |
function date_validate($form) {
if (!checkdate($form['#value']['month'], $form['#value']['day'], $form['#value']['year'])) {
form_error($form, t('The specified date is invalid.'));
}
}