Index: taxonomy_list.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_list/taxonomy_list.module,v
retrieving revision 1.8
diff -b -U3 -r1.8 taxonomy_list.module
--- taxonomy_list.module	7 Dec 2006 05:35:50 -0000	1.8
+++ taxonomy_list.module	6 Feb 2007 20:32:30 -0000
@@ -243,12 +243,12 @@

     if ( $module_ok && $show_image ) {
       $cell .= '<div class="taxonomy-list-img-blk" '. ($img_blk_attr ? $img_blk_attr : '') .'>'
-            .  '<a href="'. base_path() .'taxonomy/term/'. $term->tid .'">'. taxonomy_image_display($term->tid, '') .'</a>'
+            .  l(taxonomy_image_display($term->tid, ''), 'taxonomy/term/'. $term->tid)
             .  '</div>';
     }

     $cell .= '<div class="taxonomy-list-txt-blk" '. ($txt_blk_attr ? $txt_blk_attr : '') .'>'
-          .  '<div class="title"><a href="'. base_path() .'taxonomy/term/'. $term->tid .'">'. t($term->name)  .'</a></div>'
+          .  '<div class="title">'. l(t($term->name), 'taxonomy/term/'. $term->tid) .'</div>'
           .  '<div class="description">'. t($term->description) .'</div>'
           .  '</div>';

