Index: taxonomy_block.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_block/taxonomy_block.module,v
retrieving revision 1.14
diff -u -p -r1.14 taxonomy_block.module
--- taxonomy_block.module	31 Jan 2006 15:00:56 -0000	1.14
+++ taxonomy_block.module	17 Jan 2007 22:17:24 -0000
@@ -303,7 +303,9 @@ function _taxonomy_block_get_taxonomy_dr
  */
 function theme_taxonomy_block_list_item($node, $teaser) {
   $output = '<li>' . l($node->title, 'node/'. $node->nid,  array('title'=>t("view {$node->title} in full") ));
-  $output .= '<br/>' . $teaser;
+  if ($teaser) {
+    $output .= '<br/>' . $teaser;
+  }
   $output .= '</li>';
 
   return $output;
