diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-06 23:00:42 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-06 23:00:42 +0000 |
commit | 129c8eb18c47bf7b0e0fe35ac6bc1b7ee38d177f (patch) | |
tree | 6ff2bc019570712eabe871cd5d6c0c5b1c7194b8 /modules/taxonomy/taxonomy.module | |
parent | 0299beb05ee4af647fbb25ae113018e05aeb39ba (diff) | |
download | brdo-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.module | 2 |
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), |