Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE Multi Dropdown Error - Invalid attribute name character #1982

Open
tbob18 opened this issue Mar 22, 2018 · 1 comment
Open

IE Multi Dropdown Error - Invalid attribute name character #1982

tbob18 opened this issue Mar 22, 2018 · 1 comment

Comments

@tbob18
Copy link

tbob18 commented Mar 22, 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 . '"';

@Sophist-UK
Copy link

@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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants