You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2004/08/27 07:23:27 UTC

cvs commit: jakarta-commons/jelly/src/java/org/apache/commons/jelly/tags/core IncludeTag.java

dion        2004/08/26 22:23:27

  Modified:    jelly/src/java/org/apache/commons/jelly/tags/core
                        IncludeTag.java
  Log:
  Fix for JELLY-73
  
  Revision  Changes    Path
  1.15      +5 -1      jakarta-commons/jelly/src/java/org/apache/commons/jelly/tags/core/IncludeTag.java
  
  Index: IncludeTag.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/jelly/src/java/org/apache/commons/jelly/tags/core/IncludeTag.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- IncludeTag.java	24 Feb 2004 14:10:38 -0000	1.14
  +++ IncludeTag.java	27 Aug 2004 05:23:27 -0000	1.15
  @@ -46,12 +46,16 @@
       public void setInherit(String inherit) {
           if ("true".equals(inherit)) {
               this.shouldInherit = true;
  +        } else {
  +            this.shouldInherit = false;
           }
       }
   
       public void setExport(String export) {
           if ("true".equals(export)) {
               this.shouldExport = true;
  +        } else {
  +            this.shouldExport = false;
           }
       }
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org