kinman      2003/11/04 11:28:49

  Modified:    jasper2/src/share/org/apache/jasper/runtime
                        JspRuntimeLibrary.java
  Log:
  - Use ISO-8859-1 as the default encoding for <jsp:param> since it is the
    default encoding for the request object.
  
  Revision  Changes    Path
  1.25      +4 -4      
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/JspRuntimeLibrary.java
  
  Index: JspRuntimeLibrary.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/JspRuntimeLibrary.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- JspRuntimeLibrary.java    2 Sep 2003 21:39:59 -0000       1.24
  +++ JspRuntimeLibrary.java    4 Nov 2003 19:28:49 -0000       1.25
  @@ -1020,7 +1020,7 @@
        }
   
        if (enc == null) {
  -         enc = "UTF-8";      // Is this right?
  +         enc = "ISO-8859-1"; // The default request encoding 
        }
   
        StringBuffer out = new StringBuffer(s.length());
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to