You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2010/11/25 10:25:02 UTC

svn commit: r1038966 - /lenya/contributions/2_0_X/modules/atom/java/src/org/apache/lenya/modules/atom/ChildrenView.java

Author: andreas
Date: Thu Nov 25 09:25:01 2010
New Revision: 1038966

URL: http://svn.apache.org/viewvc?rev=1038966&view=rev
Log:
Don't load workspace child nodes recursively.

Modified:
    lenya/contributions/2_0_X/modules/atom/java/src/org/apache/lenya/modules/atom/ChildrenView.java

Modified: lenya/contributions/2_0_X/modules/atom/java/src/org/apache/lenya/modules/atom/ChildrenView.java
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/modules/atom/java/src/org/apache/lenya/modules/atom/ChildrenView.java?rev=1038966&r1=1038965&r2=1038966&view=diff
==============================================================================
--- lenya/contributions/2_0_X/modules/atom/java/src/org/apache/lenya/modules/atom/ChildrenView.java (original)
+++ lenya/contributions/2_0_X/modules/atom/java/src/org/apache/lenya/modules/atom/ChildrenView.java Thu Nov 25 09:25:01 2010
@@ -55,7 +55,7 @@ public class ChildrenView implements Res
         List children;
         if (this.document == null) {
             SiteNode[] nodes = this.area.getSite().getTopLevelNodes();
-            children = AtomUtil.getChildList(nodes, getFilter(), true);
+            children = AtomUtil.getChildList(nodes, getFilter(), false);
         } else {
             SiteNode node = this.document.getLink().getNode();
             SiteNode[] nodes = node.getChildren();



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org