Index: content_taxonomy.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/content_taxonomy/content_taxonomy.module,v
retrieving revision 1.2.2.16
diff -u -r1.2.2.16 content_taxonomy.module
--- content_taxonomy.module	18 May 2008 20:30:36 -0000	1.2.2.16
+++ content_taxonomy.module	16 Dec 2008 15:21:14 -0000
@@ -191,7 +191,7 @@
         $term = taxonomy_get_term($term);
       }
       if (!empty($term->name)) {
-        $terms[] = l($term->name, taxonomy_term_path($term), array('rel' => 'tag', 'title' => $term->description));
+        $terms[] = theme('content_taxonomy_link', $term->name, taxonomy_term_path($term), array('rel' => 'tag', 'title' => $term->description));
       }
     }
   }
@@ -208,6 +208,19 @@
   return implode('<br />', $terms);
 }
 
+/** 
+  * Theme Content Taxonomy links.
+  * 
+  * @param $title Link title
+  * @param $path Link path
+  * @param $attributes Link attributes
+  * 
+  * @return HTML representation of the link.
+ */
+function theme_content_taxonomy_link($title, $path, $attributes) {
+  return l($title, $path, $attributes);
+}
+
 /**
  *  Returns all term - node relation, optionally for a given parent
  * 
