Update of /var/cvs/src/org/mmbase/util
In directory james.mmbase.org:/tmp/cvs-serv29436
Modified Files:
Tag: MMBase-1_8
LocalizedEntryListFactory.java
Log Message:
ported bugfix from HEAD, value of Entry should not be a FunctionValue object,
but a String
See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/util
Index: LocalizedEntryListFactory.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/util/LocalizedEntryListFactory.java,v
retrieving revision 1.39.2.5
retrieving revision 1.39.2.6
diff -u -b -r1.39.2.5 -r1.39.2.6
--- LocalizedEntryListFactory.java 19 Aug 2008 11:42:51 -0000 1.39.2.5
+++ LocalizedEntryListFactory.java 2 Sep 2008 09:45:46 -0000 1.39.2.6
@@ -38,7 +38,7 @@
* partially by explicit values, though this is not recommended.
*
* @author Michiel Meeuwissen
- * @version $Id: LocalizedEntryListFactory.java,v 1.39.2.5 2008/08/19 11:42:51
michiel Exp $
+ * @version $Id: LocalizedEntryListFactory.java,v 1.39.2.6 2008/09/02 09:45:46
michiel Exp $
* @since MMBase-1.8
*/
public class LocalizedEntryListFactory implements Serializable, Cloneable {
@@ -323,7 +323,7 @@
public Object next() {
org.mmbase.bridge.Node next =
nodeIterator.nextNode();
if (query instanceof
NodeQuery) {
- return new Entry(next,
next.getFunctionValue("gui", null));
+ return new Entry(next,
next.getFunctionValue("gui", null).toString());
} else {
String alias =
Queries.getFieldAlias((StepField) query.getFields().get(0));
log.debug("using field " +
alias);
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs