Issue #188947 by lyricnz: Fixed date_validate()(form) should be date_validate()(element).
parent
c0bfd275c2
commit
9cd66739ad
|
@ -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.'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue