You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2014/04/29 16:58:07 UTC

svn commit: r1591000 - /myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/Command.java

Author: bommel
Date: Tue Apr 29 14:58:06 2014
New Revision: 1591000

URL: http://svn.apache.org/r1591000
Log:
(TOBAGO-1393)
Default of omit attribute for command facet is TRUE instead of FALSE

Modified:
    myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/Command.java

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/Command.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/Command.java?rev=1591000&r1=1590999&r2=1591000&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/Command.java (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/Command.java Tue Apr 29 14:58:06 2014
@@ -131,7 +131,7 @@ public class Command {
       this.delay = delay;
     }
     // omit == false is the default
-    if (!ComponentUtils.getBooleanAttribute(facetComponent, Attributes.OMIT)) {
+    if (ComponentUtils.getBooleanAttribute(facetComponent, Attributes.OMIT)) {
       this.omit = Boolean.TRUE;
     }
   }