You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@tbob18 - Good call - can you please submit a Pull Request with this change. With something this simple you can probably do it all here on Github easily enough.
tbob18
added a commit
to tbob18/fabrik
that referenced
this issue
Mar 23, 2018
I noticed this error caused by double quotes in the following file:
https://github.com/Fabrik/fabrik/blob/master/plugins/fabrik_element/dropdown/layouts/fabrik-element-dropdown-form.php
Changing to following line fixed it and didn't seem to cause any issues otherwise.:
$multisize = $d->multisize === '' ? '' : 'size="' . $d->multisize . '""';
to:
$multisize = $d->multisize === '' ? '' : 'size="' . $d->multisize . '"';
The text was updated successfully, but these errors were encountered: