date_validate

Versions
4.7 – 7
date_validate($form)

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

Related topics

Code

includes/form.inc, line 1223

<?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.'));
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.