Index: content_taxonomy.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/content_taxonomy/content_taxonomy.module,v
retrieving revision 1.2.2.15.2.13
diff -u -p -w -r1.2.2.15.2.13 content_taxonomy.module
--- content_taxonomy.module	17 Sep 2008 14:23:54 -0000	1.2.2.15.2.13
+++ content_taxonomy.module	3 Dec 2008 19:35:07 -0000
@@ -145,6 +145,14 @@ function content_taxonomy_field_settings
       $data = content_views_field_views_data($field);
       $table_alias = content_views_tablename($field);
 
+      // Add a relation to the taxonomy term table.
+      $data[$table_alias][$field['field_name'] .'_value']['relationship'] = array(
+        'handler' => 'views_handler_relationship',
+        'base' => 'term_data',
+        'field' => 'tid',
+        'label' => t('@field-title term', array('@field-title' => check_plain(t($field['widget']['label'])))),
+      );
+
       // Swap the filter handler to the 'in' operator.
       $data[$table_alias][$field['field_name'] .'_value']['filter']['handler'] = 'content_taxonomy_handler_filter_many_to_one';
       return $data;
