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);

Comments

webrelab created an issue. See original summary.

bala.addweb’s picture

StatusFileSize
new789 bytes

Hello Webrelab,

Yes, Need to change there. Here is the patch for that.

bala.addweb’s picture

Status: Active » Needs review
vdsh’s picture

StatusFileSize
new799 bytes

Thanks 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

diego_mow’s picture

StatusFileSize
new790 bytes

Adding patch #5 with coding standards for this line.

vfabri’s picture

Status: Needs review » Reviewed & tested by the community
ApacheEx’s picture

Hey, any updates? The patch from #5 looks good.

joelpittet’s picture

Version: 7.x-1.46 » 7.x-1.x-dev
Issue tags: +Quick fix

Bump RTBC++

firewaller’s picture

#5 works for me as well.

katin’s picture

#5 worked for me.

nikunjkotecha’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

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