You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2001/09/01 02:42:09 UTC

cvs commit: jakarta-tomcat-jasper/jasper34/runtime/org/apache/jasper34/runtime PageContextImpl.java

costin      01/08/31 17:42:09

  Modified:    jasper34/runtime/org/apache/jasper34/runtime
                        PageContextImpl.java
  Log:
  For the third time, updating the forward fix from Shawn on j-t-j.
  
  Revision  Changes    Path
  1.3       +3 -0      jakarta-tomcat-jasper/jasper34/runtime/org/apache/jasper34/runtime/PageContextImpl.java
  
  Index: PageContextImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-jasper/jasper34/runtime/org/apache/jasper34/runtime/PageContextImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- PageContextImpl.java	2001/06/06 06:45:34	1.2
  +++ PageContextImpl.java	2001/09/01 00:42:09	1.3
  @@ -415,6 +415,9 @@
           throws ServletException, IOException
       {
           String path = getAbsolutePathRelativeToContext(relativeUrlPath);
  +	if( out!=null ) {
  +	    out.clearBuffer();
  +	}
           context.getRequestDispatcher(path).forward(request, response);
       }