Author: hansbak
Date: Fri Oct 13 23:05:09 2006
New Revision: 463893

URL: http://svn.apache.org/viewvc?view=rev&rev=463893
Log:
fix of a fault introduced in 463574

Modified:
    
incubator/ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java

Modified: 
incubator/ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java
URL: 
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java?view=diff&rev=463893&r1=463892&r2=463893
==============================================================================
--- 
incubator/ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java 
(original)
+++ 
incubator/ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java 
Fri Oct 13 23:05:09 2006
@@ -478,7 +478,7 @@
          */
         if ((tmpList.size() > 0) || ((noConditionFind != null) && 
(noConditionFind.equals("Y")))) {
             if (!UtilValidate.isEmpty(filterByDate) && 
"Y".equals(filterByDate)) {
-               if (!UtilValidate.isEmpty(filterByDateValue)) {
+               if (UtilValidate.isEmpty(filterByDateValue)) {
                        EntityCondition filterByDateCondition = 
EntityUtil.getFilterByDateExpr();
                        tmpList.add(filterByDateCondition);
                } else {


Reply via email to