has anyone noticed that the taxonomy items are not listed in this theme?
i tried to patch the interlace code with the following
function node($node, $main = 0) {
if (module_exist("taxonomy")) {
$terms = taxonomy_link("taxonomy terms", $node);
}
echo "<div class=\"node\">\n";
echo "<h1>". $node->title ."</h1>\n";
if (count($terms)) {
echo "<p class=\"nodetaxonomy\">". $this->links($terms) ."</p>\n";
}
but i can't seem to get it to work.
any ideas?
Comments
Comment #1
TDobes commentedI've fixed this in CVS for both the 4.3 and CVS HEAD versions.
Comment #2
(not verified) commented