date_validate($form)Validates the date type to stop dates like February 30, 2006.
includes/form.inc, line 2160
<?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.'));
}
}
?>