You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ha...@apache.org on 2009/02/11 05:26:25 UTC

svn commit: r743213 - /ofbiz/trunk/framework/common/webcommon/WEB-INF/actions/includes/ListPortalPages.groovy

Author: hansbak
Date: Wed Feb 11 04:26:24 2009
New Revision: 743213

URL: http://svn.apache.org/viewvc?rev=743213&view=rev
Log:
sort portal pages

Modified:
    ofbiz/trunk/framework/common/webcommon/WEB-INF/actions/includes/ListPortalPages.groovy

Modified: ofbiz/trunk/framework/common/webcommon/WEB-INF/actions/includes/ListPortalPages.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/WEB-INF/actions/includes/ListPortalPages.groovy?rev=743213&r1=743212&r2=743213&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/webcommon/WEB-INF/actions/includes/ListPortalPages.groovy (original)
+++ ofbiz/trunk/framework/common/webcommon/WEB-INF/actions/includes/ListPortalPages.groovy Wed Feb 11 04:26:24 2009
@@ -58,7 +58,7 @@
                     EntityCondition.makeCondition("ownerUserLoginId", EntityOperator.EQUALS, "_NA_")
                 ],EntityOperator.OR),
             ],EntityOperator.AND);
-    portalPages = delegator.findList("PortalPage", ppCond, null, null, null, false);
+    portalPages = delegator.findList("PortalPage", ppCond, null, ["sequenceNum"], null, false);
 
     // remove overridden system pages
     portalPages.each { portalPage ->