From db4bc4b0a8540fd9ef564e29eb44885f989f5341 Mon Sep 17 00:00:00 2001 From: webchick Date: Wed, 29 Jun 2011 23:41:11 -0700 Subject: Issue #188947 by lyricnz: Fixed date_validate()(form) should be date_validate()(element). --- includes/form.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/form.inc b/includes/form.inc index 38ef41cf0..2dffe84cb 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -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.')); } } -- cgit v1.2.3