Index: wrappers/taxonomy.module.copyme =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/category/wrappers/taxonomy.module.copyme,v retrieving revision 1.15.2.5 diff -u -r1.15.2.5 taxonomy.module.copyme --- wrappers/taxonomy.module.copyme 6 Jun 2006 12:26:07 -0000 1.15.2.5 +++ wrappers/taxonomy.module.copyme 20 Jul 2006 14:17:07 -0000 @@ -25,7 +25,12 @@ elseif ($type == 'node') { return array(); } - + if (array_key_exists('taxonomy', $node)) { + foreach ($node->taxonomy as $nid => $term) { + $links[] = l($term->name, taxonomy_term_path($term) . $nid, array('rel' => 'tag', 'title' => $term->description)); + } + return $links; + } return category_link($type, $node); }