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
https://github.com/eclipse-ee4j/mojarra/blob/master/impl/src/main/java/com/sun/faces/renderkit/html_basic/HtmlResponseWriter.java#L503
At line 503 the actual condition for escaping or not is:
if (!withinScript && !withinScript) { dontEscape = false; }
which is obviously a typo or a bug...
if it's a typo we could remove the second part, but reading the code my suspect is that it should be the same condition of line 421!
// always turn escaping back on once an element ends if (!withinScript && !withinStyle) { dontEscape = false; }
The text was updated successfully, but these errors were encountered:
Yes it's a typo / copy-paste-error. Feel free to PR/fix it.
Sorry, something went wrong.
Issue eclipse-ee4j#5517: HtmlResponseWriter
aecc8ac
Signed-off-by: pizzi80 <paolo@given2.com>
76f1b4e
Merge #5517 from 4.1 into 5.1
b7a2ed3
No branches or pull requests
https://github.com/eclipse-ee4j/mojarra/blob/master/impl/src/main/java/com/sun/faces/renderkit/html_basic/HtmlResponseWriter.java#L503
At line 503 the actual condition for escaping or not is:
which is obviously a typo or a bug...
if it's a typo we could remove the second part,
but reading the code my suspect is that it should be
the same condition of line 421!
The text was updated successfully, but these errors were encountered: