Closed (won't fix)
Project:
Tax Tree Nodes
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Mar 2009 at 19:28 UTC
Updated:
13 Dec 2010 at 10:34 UTC
Tree shows only up to 10 nodes at the leaf level even when there are more than 10.
I see that line below, from the last function taxtreenodes_taxonomy_select_nodes() in taxtreenodes.module,
$result = db_query_range($sql, $args, 0, variable_get('feed_default_items', 10));
is responsible for the limit.
I think it is probably by the result of copying code from taxonomy module. I think it should have been without using range.
$result = db_query($sql, $args);
, which works nice for my case.
Comments
Comment #1
attiks commentedToo old