Index: user_terms.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/user_terms/Attic/user_terms.views.inc,v
retrieving revision 1.1.2.3
diff -u -p -r1.1.2.3 user_terms.views.inc
--- user_terms.views.inc	13 Feb 2010 17:45:10 -0000	1.1.2.3
+++ user_terms.views.inc	19 Feb 2010 17:30:39 -0000
@@ -51,6 +51,17 @@ function user_terms_views_data() {
       'skip base' => 'term_user',
       'allow empty' => TRUE,
     ),
+    'relationship' => array(
+      'title' => t('Terms'),
+      'label' => t('Terms for the user'),
+      'help' => t('The terms assigned to the user. May produce multiple rows.'),
+      'base' => 'term_data',
+      'base field' => 'tid',
+      'handler' => 'views_handler_relationship',
+      // This allows us to not show this relationship if the base is already
+      // term_data so users won't create circular relationships.
+      'skip base' => array('term_data'),
+    ),
   );
 
   return $data;
