You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2007/10/23 20:56:47 UTC

svn commit: r587609 - /myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/taglib/sandbox/WizardTag.java

Author: lofwyr
Date: Tue Oct 23 11:56:47 2007
New Revision: 587609

URL: http://svn.apache.org/viewvc?rev=587609&view=rev
Log:
TOBAGO-518: Wizard: Fix lifecycle of the the WizardTag

Modified:
    myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/taglib/sandbox/WizardTag.java

Modified: myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/taglib/sandbox/WizardTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/taglib/sandbox/WizardTag.java?rev=587609&r1=587608&r2=587609&view=diff
==============================================================================
--- myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/taglib/sandbox/WizardTag.java (original)
+++ myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/taglib/sandbox/WizardTag.java Tue Oct 23 11:56:47 2007
@@ -181,9 +181,16 @@
   }
 
   @Override
+  public int doEndTag() throws JspException {
+    panelTag.doEndTag();
+    return super.doEndTag();
+  }
+
+  @Override
   public void release() {
     super.release();
     controller = null;
+    panelTag = null;
   }
 
   public String getController() {