Closed (fixed)
Project:
Taxonomy Node
Version:
5.x-1.5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Dec 2008 at 11:08 UTC
Updated:
12 Jun 2009 at 03:20 UTC
Line 178, and onwards, of taxonomynode.module
$types = content_types();
foreach ($types as $type) {
$options[$type['type']] = $type['name'];
}
This indicates a dependency on CCK, you can change that code to:
$types = node_get_types('types');
foreach($types as $type) {
$options[$type->type] = $type->name;
}
as a backport from this
Comments
Comment #1
hanoiiThanks, I'll look at this
Comment #2
hanoii