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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

hansbak-2
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 ->