Issue #188947 by lyricnz: Fixed date_validate()(form) should be date_validate()(element).

8.0.x
webchick 2011-06-29 23:41:16 -07:00
parent c0bfd275c2
commit 9cd66739ad
1 changed files with 3 additions and 3 deletions

View File

@ -2853,9 +2853,9 @@ function form_process_date($element) {
/**
* Validates the date type to stop dates like February 30, 2006.
*/
function date_validate($form) {
if (!checkdate($form['#value']['month'], $form['#value']['day'], $form['#value']['year'])) {
form_error($form, t('The specified date is invalid.'));
function date_validate($element) {
if (!checkdate($element['#value']['month'], $element['#value']['day'], $element['#value']['year'])) {
form_error($element, t('The specified date is invalid.'));
}
}