Side navigation
#1245 closed bug (fixed)
Opened May 25, 2007 10:25PM UTC
Closed June 20, 2007 10:01PM UTC
Last modified June 21, 2007 03:57AM UTC
Bug with submitHandler
Reported by: | nikola | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.1.3 |
Component: | plugin | Version: | 1.1.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
wtf is this!!!
243 if ( validator.form() ) { 244 return validator.settings.submitHandler 245 && validator.settings.submitHandler( validator.currentForm ) 246 && false 247 || true 248 }
This always returns TRUE!!!! Fix it like this, please:
return validator.settings.submitHandler && validator.settings.submitHandler( validator.currentForm );
It's about jquery.validate.js :)