We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
e_form::get_attributes()
@Deltik This commit introduced a bug into the form handler.
git.exe bisect good 2088292 is the first bad commit commit 2088292 Author: Nick Liu Date: Sat Sep 4 15:06:19 2021 +0200
Specifically it renders the following invalid HTML in the batch options and elsewhere.
I previously committed a fix for the pop-up confirmation on the admin area cache delete button, which had a similar issue. ( 632f335)
It appears the parsing of the $options['other'] value has been corrupted (see quick-fix commit above)
$options['other']
<select name="etrigger_batch" id="etrigger-batch" class="tbox form-control input-large select batch e-autosubmit reset" data-original-title="" title=""> <option value="">With selected...</option> <option value="copy" class="ui-batch-option class" style=""padding-left:" 15px"="">Copy</option> <option value="delete" class="ui-batch-option class" style=""padding-left:" 15px"="">Delete</option> <option value="export" class="ui-batch-option class" style=""padding-left:" 15px"="">Export</option>
Originally posted by @CaMer0n in #4554 (comment)
The text was updated successfully, but these errors were encountered:
e107inc#4572: e_form: No htmlspecialchars() on "other" attributes
e_form
htmlspecialchars()
45bce2a
Fixes: e107inc#4572 Discussion: e107inc#4554 (comment)
Merge pull request #4573 from Deltik/fix/4572
1870431
#4572: `e_form`: No `htmlspecialchars()` on "other" attributes
Successfully merging a pull request may close this issue.
@Deltik This commit introduced a bug into the form handler.
git.exe bisect good
2088292 is the first bad commit
commit 2088292
Author: Nick Liu
Date: Sat Sep 4 15:06:19 2021 +0200
Specifically it renders the following invalid HTML in the batch options and elsewhere.
I previously committed a fix for the pop-up confirmation on the admin area cache delete button, which had a similar issue. ( 632f335)
It appears the parsing of the
$options['other']
value has been corrupted (see quick-fix commit above)Originally posted by @CaMer0n in #4554 (comment)
The text was updated successfully, but these errors were encountered: