Author: jleroux
Date: Fri May 31 12:39:55 2013
New Revision: 1488193

URL: http://svn.apache.org/r1488193
Log:
"Applied fix from trunk for revision: 1488188  " 
------------------------------------------------------------------------
r1488188 | jleroux | 2013-05-31 14:11:27 +0200 (ven., 31 mai 2013) | 1 line

Fixes a bug reported by Skip on user ML
------------------------------------------------------------------------

Modified:
    ofbiz/branches/release12.04/   (props changed)
    
ofbiz/branches/release12.04/applications/product/webapp/catalog/WEB-INF/actions/category/CategoryTree.groovy

Propchange: ofbiz/branches/release12.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1488188

Modified: 
ofbiz/branches/release12.04/applications/product/webapp/catalog/WEB-INF/actions/category/CategoryTree.groovy
URL: 
http://svn.apache.org/viewvc/ofbiz/branches/release12.04/applications/product/webapp/catalog/WEB-INF/actions/category/CategoryTree.groovy?rev=1488193&r1=1488192&r2=1488193&view=diff
==============================================================================
--- 
ofbiz/branches/release12.04/applications/product/webapp/catalog/WEB-INF/actions/category/CategoryTree.groovy
 (original)
+++ 
ofbiz/branches/release12.04/applications/product/webapp/catalog/WEB-INF/actions/category/CategoryTree.groovy
 Fri May 31 12:39:55 2013
@@ -47,7 +47,7 @@ List separateRootType(roots) {
 
 completedTree =  [];
 // Get the Catalogs
-prodCatalogs = delegator.findByAnd("ProdCatalog");
+prodCatalogs = delegator.findList("ProdCatalog", null, null, null, null, 
false);
 if (prodCatalogs) {
     prodCatalogs.each { prodCatalog ->
         prodCatalogMap = [:];


Reply via email to