Hello.
In clientside_validation_form/clientside_validation_form.module on line 170 is code
$is_multiple = (isset($element['#options']) && count($element['#options']>1));
Must be
$is_multiple = (isset($element['#options']) && count($element['#options']) > 1);
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | clientside_validation_form-2978586-5.patch | 790 bytes | diego_mow |
Comments
Comment #2
bala.addweb commentedHello Webrelab,
Yes, Need to change there. Here is the patch for that.
Comment #3
bala.addweb commentedComment #4
vdsh commentedThanks for the fix - but there is an additional ) at the very end of your patch which makes it invalid. Here is the version with the typo corrected
Comment #5
diego_mow commentedAdding patch #5 with coding standards for this line.
Comment #6
vfabri commentedComment #7
ApacheEx commentedHey, any updates? The patch from #5 looks good.
Comment #8
joelpittetBump RTBC++
Comment #9
firewaller commented#5 works for me as well.
Comment #10
katin commented#5 worked for me.
Comment #11
nikunjkotecha