Mantis - Resin
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
4685 | minor | always | 07-26-11 08:08 | 07-26-11 14:45 | |
|
|||||
Reporter: | dicr | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 4.0.20 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 4.0.21 | ||
|
|||||
Summary: | 0004685: jsp:include corrupt params | ||||
Description: |
Using jsp:include with jsp:param broke params - char '&' translated to '='. Test page: === jspinclude.jsp === <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %> <!DOCTYPE html> <html><body> <jsp:include page="jspinclude.jspf"> <jsp:param name="str" value="X&X"/> </jsp:include> </body></html> /=== === jspinclude.jspf === <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %> <% out.println(request.getParameter("str")); %> /=== |
||||
Steps To Reproduce: | |||||
Additional Information: |
all '&' characters in param translated to '=' === Param str: X&X Result is: X=X Param str: X&X Result is: X=amp;X |
||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|