--- faq\faq.module 2007-10-11 07:49:42.000000000 -0400 +++ faq.module 2007-11-01 13:24:21.390625000 -0400 @@ -1740,10 +1740,14 @@ function _get_indented_faq_terms($vid, $ if ($tree_count) { // get term description $desc = ''; + if (module_exists('taxonomy_image')) { + $desc .= taxonomy_image_display($term->tid, 'align="left" hspace="3"'); + } if (!empty($term->description)) { - $desc = '

'; + $desc .= '

'; $desc .= $term->description ."

"; } + $desc .= '
'; // see if this term has any nodes itself, should it be a link? $result = db_query(db_rewrite_sql("SELECT COUNT(n.nid) AS c FROM {term_node} t INNER JOIN {node} n ON t.nid = n.nid WHERE n.status = 1 AND n.type = 'faq' AND t.tid = '%d' ", "n", "nid"), $term->tid);