Author: erwan
Date: Fri Jun 17 10:01:52 2011
New Revision: 1136831
URL:
http://svn.apache.org/viewvc?rev=1136831&view=revLog:
Wrong attribute was used
Modified:
ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/OrderValueList.java
Modified: ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/OrderValueList.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/OrderValueList.java?rev=1136831&r1=1136830&r2=1136831&view=diff==============================================================================
--- ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/OrderValueList.java (original)
+++ ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/OrderValueList.java Fri Jun 17 10:01:52 2011
@@ -53,7 +53,7 @@ public class OrderValueList extends Meth
if (toListAcsr.isEmpty()) {
toListAcsr = listAcsr;
}
- orderByListAcsr = new ContextAccessor<List<String>>(element.getAttribute("order-by-list-name"));
+ orderByListAcsr = new ContextAccessor<List<String>>(element.getAttribute("order-by-list"), element.getAttribute("order-by-list-name"));
}
@Override