summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.module
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-06 23:00:42 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-06 23:00:42 +0000
commit129c8eb18c47bf7b0e0fe35ac6bc1b7ee38d177f (patch)
tree6ff2bc019570712eabe871cd5d6c0c5b1c7194b8 /modules/taxonomy/taxonomy.module
parent0299beb05ee4af647fbb25ae113018e05aeb39ba (diff)
downloadbrdo-129c8eb18c47bf7b0e0fe35ac6bc1b7ee38d177f.tar.gz
brdo-129c8eb18c47bf7b0e0fe35ac6bc1b7ee38d177f.tar.bz2
#62340 by chx, webchick, Jaza, Eaton, mathieu, and myself. Configurable node types.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r--modules/taxonomy/taxonomy.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index ddf308edf..543f4b661 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -138,7 +138,7 @@ function taxonomy_overview_vocabularies() {
foreach ($vocabularies as $vocabulary) {
$types = array();
foreach ($vocabulary->nodes as $type) {
- $node_type = node_get_name($type);
+ $node_type = node_get_types('name', $type);
$types[] = $node_type ? $node_type : $type;
}
$rows[] = array('name' => check_plain($vocabulary->name),