From 669d112af565365862c4f5e5123bcc003a7f97a8 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Fri, 17 Apr 2009 19:59:51 +0000 Subject: [PATCH] - Patch #239945 by JeremyFrench: moved depth check out of loop. --- modules/taxonomy/taxonomy.module | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 5682d0e82cbd..9df49b13f257 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -983,19 +983,16 @@ function taxonomy_get_tree($vid, $parent = 0, $max_depth = NULL, $depth = -1) { $max_depth = (is_null($max_depth)) ? count($children[$vid]) : $max_depth; $tree = array(); - if (!empty($children[$vid][$parent])) { + if ($max_depth > $depth && !empty($children[$vid][$parent])) { foreach ($children[$vid][$parent] as $child) { - if ($max_depth > $depth) { - $term = clone $terms[$vid][$child]; - $term->depth = $depth; - // The "parent" attribute is not useful, as it would show one parent only. - unset($term->parent); - $term->parents = $parents[$vid][$child]; - $tree[] = $term; - - if (!empty($children[$vid][$child])) { - $tree = array_merge($tree, taxonomy_get_tree($vid, $child, $max_depth, $depth)); - } + $term = clone $terms[$vid][$child]; + $term->depth = $depth; + // The "parent" attribute is not useful, as it would show one parent only. + unset($term->parent); + $term->parents = $parents[$vid][$child]; + $tree[] = $term; + if (!empty($children[$vid][$child])) { + $tree = array_merge($tree, taxonomy_get_tree($vid, $child, $max_depth, $depth)); } } } -- GitLab