summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-08-19 14:40:06 +0200
committerwebchick <webchick@24967.no-reply.drupal.org>2012-08-19 14:40:06 +0200
commit02874564db2a4f85ed2fea261c45f08fc0bde6d5 (patch)
tree92bf5ad26e69d449893d5eb93797257d1a547718 /modules/taxonomy
parent5271022aa780a9f353e896165fa648f95c9298c5 (diff)
downloadbrdo-02874564db2a4f85ed2fea261c45f08fc0bde6d5.tar.gz
brdo-02874564db2a4f85ed2fea261c45f08fc0bde6d5.tar.bz2
Issue #1715326 by kid_icarus, oriol_e9g, dsdeiz: Fixed taxonomy_get_tree() typo on comments...
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 4652c2e67..df4084c33 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -1000,8 +1000,8 @@ function taxonomy_get_tree($vid, $parent = 0, $max_depth = NULL, $load_entities
$parents = &drupal_static(__FUNCTION__ . ':parents', array());
$terms = &drupal_static(__FUNCTION__ . ':terms', array());
- // We cache trees, so it's not CPU-intensive to call get_tree() on a term
- // and its children, too.
+ // We cache trees, so it's not CPU-intensive to call taxonomy_get_tree() on a
+ // term and its children, too.
if (!isset($children[$vid])) {
$children[$vid] = array();
$parents[$vid] = array();