You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2009/07/03 13:11:05 UTC

svn commit: r790859 - /myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/PartialViewContextImpl.java

Author: werpu
Date: Fri Jul  3 11:11:05 2009
New Revision: 790859

URL: http://svn.apache.org/viewvc?rev=790859&view=rev
Log:
https://issues.apache.org/jira/browse/MYFACES-2118
fixed a bug introduce by me regarding the render response, mea culpa, sorry

Modified:
    myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/PartialViewContextImpl.java

Modified: myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/PartialViewContextImpl.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/PartialViewContextImpl.java?rev=790859&r1=790858&r2=790859&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/PartialViewContextImpl.java (original)
+++ myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/PartialViewContextImpl.java Fri Jul  3 11:11:05 2009
@@ -350,7 +350,8 @@
             try {
                 writer.startUpdate(target.getClientId(_facesContext));
                 inUpdate = true;
-                target.encodeBegin(_facesContext);
+                target.encodeAll(_facesContext);
+                writer.endUpdate();
             } catch (IOException ex) {
                 Log log = LogFactory.getLog(PartialViewContextImpl.class);
                 if (log.isErrorEnabled()) {