--- ./taxonomy_image.module_OLD 2011-03-19 14:54:11.000000000 -0400 +++ ./taxonomy_image.module 2011-03-19 14:56:18.000000000 -0400 @@ -64,7 +64,8 @@ function taxonomy_image_display($tid, $t $current->title = taxonomy_image_tt("taxonomy:term:$current->tid:name", $current->name); } // Have to dump double quotes for attribute. - $current->title = htmlspecialchars(strip_tags($current->title), ENT_COMPAT); + // Now preserving & (ampersand) character + $current->title = str_replace("&", "&", htmlspecialchars(strip_tags($current->title), ENT_COMPAT)); $my_attrs = array( 'width' => $current->width,