Bug in FredJSP caused malformed html answer
-------------------------------------------
Key: TRINIDAD-1323
URL: https://issues.apache.org/jira/browse/TRINIDAD-1323
Project: MyFaces Trinidad
Issue Type: Bug
Affects Versions: 1.2.10-core, 1.2.8-core
Reporter: Sergey Astakhov
Priority: Minor
Extract of code from
org.apache.myfaces.trinidadinternal.renderkit.core.pages.FredJSP:
CoreOutputText headStart = new CoreOutputText();
root.getChildren().add(headStart);
headStart.setEscape(false);
headStart.setValue("<head>");
...
CoreOutputText headEnd = new CoreOutputText();
root.getChildren().add(headEnd);
headStart.setEscape(false);
headStart.setValue("</head>");
The last two lines is referenced to the headStart instead of the headEnd.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.