Index: modules/taxonomy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy.module,v
retrieving revision 1.146
diff -u -r1.146 taxonomy.module
--- modules/taxonomy.module	19 Sep 2004 12:47:00 -0000	1.146
+++ modules/taxonomy.module	19 Sep 2004 17:01:48 -0000
@@ -30,13 +30,13 @@
     if (array_key_exists('taxonomy', $node)) {
       foreach ($node->taxonomy as $tid) {
         $term = taxonomy_get_term($tid);
-        $links[] = l($term->name, 'taxonomy/term/'. $term->tid, $term->description ? array ('title' => check_output($term->description)) : array());
+        $links[] = l($term->name, 'taxonomy/term/'. $term->tid, $term->description ? array ('title' => check_output(strip_tags(node_teaser($term->description)))) : array());
       }
     }
     else {
       $links = array();
       foreach (taxonomy_node_get_terms($node->nid) as $term) {
-        $links[] = l($term->name, 'taxonomy/term/'. $term->tid, $term->description ? array ('title' => check_output($term->description)) : array());
+        $links[] = l($term->name, 'taxonomy/term/'. $term->tid, $term->description ? array ('title' => check_output(strip_tags(node_teaser($term->description)))) : array());
       }
 
     }
