Index: includes/views/content_taxonomy_handler_filter_many_to_one.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/content_taxonomy/includes/views/Attic/content_taxonomy_handler_filter_many_to_one.inc,v retrieving revision 1.1.2.1 diff -u -p -r1.1.2.1 content_taxonomy_handler_filter_many_to_one.inc --- includes/views/content_taxonomy_handler_filter_many_to_one.inc 17 Sep 2008 14:23:54 -0000 1.1.2.1 +++ includes/views/content_taxonomy_handler_filter_many_to_one.inc 16 Feb 2011 02:29:09 -0000 @@ -16,6 +16,9 @@ class content_taxonomy_handler_filter_ma function get_value_options() { $options = content_taxonomy_allowed_values($this->content_field); unset($options['']); + foreach($options as $key => $value) { + $options[$key] = html_entity_decode($value); + } $this->value_options = $options; } }