Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 6.1.14
-
Fix Version/s: 6.1.15.pre0
-
Component/s: HTTP
-
Labels:None
-
Environment:All
-
Number of attachments :
Description
The class org.mortbay.jetty.EncodedHttpURI ignores the given encoding parameter.
Fix: don't ignore it ![]()
--------------------------------------------------------------------
public class EncodedHttpURI extends HttpURI
{
private String _encoding;
public EncodedHttpURI(String encoding)
{ super(); _encoding=encoding; // <- Insert this line!!!!!!! }
Thanks, fix is applied to jetty-6 and jetty-7 with a little test case.