Index: taxonomy_image.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_image/taxonomy_image.module,v retrieving revision 1.12.4.13.2.42 diff -u -r1.12.4.13.2.42 taxonomy_image.module --- taxonomy_image.module 17 Mar 2009 14:38:16 -0000 1.12.4.13.2.42 +++ taxonomy_image.module 19 Mar 2009 12:05:19 -0000 @@ -58,10 +58,10 @@ // Build the link title based on admin choice. // Note: translation must be done here because the cache needs to be language-neutral. if ($current->description && !variable_get('taxonomy_image_link_title', 0)) { - $current->title = taxonomy_image_tt("taxonomy:term:$term->tid:description", $current->description); + $current->title = taxonomy_image_tt('taxonomy:term:'. $tid .':description', $current->description); } else { - $current->title = taxonomy_image_tt("taxonomy:term:$term->tid:name", $current->name); + $current->title = taxonomy_image_tt('taxonomy:term:'. $tid .':name', $current->name); } // Have to dump double quotes for attribute. $current->title = htmlspecialchars(strip_tags($current->title), ENT_COMPAT);