Index: modules/taxonomy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy.module,v
retrieving revision 1.139
diff -u -r1.139 taxonomy.module
--- modules/taxonomy.module	21 Aug 2004 06:42:37 -0000	1.139
+++ modules/taxonomy.module	28 Aug 2004 05:57:12 -0000
@@ -869,7 +869,8 @@
 
       drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - '. $title .'" href="'. url('taxonomy/term/'. $str_tids .'/'. $depth .'/feed') .'" />');
 
-      $output = taxonomy_render_nodes(taxonomy_select_nodes($tids, $operator, $depth, TRUE));
+      $output = implode('', module_invoke_all('taxonomy', 'view', 'term', $tids));
+      $output .= taxonomy_render_nodes(taxonomy_select_nodes($tids, $operator, $depth, TRUE));
       print theme('page', $output, $title);
       break;
 
