There is an error with the date validation in your clientside_validation.js file. Line 1084 (v7.x-1.33), you have to change
var month = parseInt(parts[param.monthpos], 10);
by
var month = parseInt(parts[param.monthpos], 10);
if (month>0) month--;

or something similar.

In Javascript, the month value is between 0 an 11, not between 1 and 12.

CommentFileSizeAuthor
#2 error_with_date_validation-1743530-2.patch553 byteskalabro
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Jelle_S’s picture

Status: Active » Fixed

Thanks for catching that! Fixed in latest dev

kalabro’s picture

Version: 7.x-1.33 » 7.x-1.x-dev
Status: Fixed » Needs review
FileSize
553 bytes

An issue is not fixed because of incorrect comparison sign.
Try to input 01/00/2012 (will be valid) or 01/12/2012 (will be invalid) to test.

Patch attached.

Jelle_S’s picture

Status: Needs review » Fixed

Sorry, my bad! fixed in latest dev

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.