Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
date_validate($form)
6/includes/form.inc, line 1704
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. |
<?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.'));
}
}
?>