| Versions | |
|---|---|
| 4.7 – 7 | date_validate($form) |
Validates the FAPI date type to stop dates like 30/Feb/2006
includes/
<?php
function date_validate($form) {
if (!checkdate($form['#value']['month'], $form['#value']['day'], $form['#value']['year'])) {
form_error($form, t('The specified date is invalid.'));
}
}
?>