Index: modules/taxonomy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy.module,v
retrieving revision 1.106.2.2
diff -u -r1.106.2.2 taxonomy.module
--- modules/taxonomy.module	20 Mar 2004 13:47:14 -0000	1.106.2.2
+++ modules/taxonomy.module	30 Apr 2004 04:01:50 -0000
@@ -37,7 +37,7 @@
     if ($node->taxonomy) {
       foreach ($node->taxonomy as $tid) {
         $term = taxonomy_get_term($tid);
-        $links[] = l($term->name, "taxonomy/page/or/$term->tid");
+        $links[] = l($term->name, "taxonomy/page/or/$term->tid", $term->description ? array ('title' => $term->description) : array ());
       }
     }
     else {
@@ -52,7 +52,7 @@
 
       $links = array();
       foreach (taxonomy_node_get_terms($node->nid) as $term) {
-        $links[] = l($term->name, "taxonomy/page/or/$term->tid");
+        $links[] = l($term->name, "taxonomy/page/or/$term->tid", $term->description ? array ('title' => $term->description) : array ());
       }
 
     }
