--- ./userpoints.views.inc 2009-09-03 16:28:22.000000000 +0200 +++ ./userpoints.views.inc 2009-09-03 16:28:35.000000000 +0200 @@ -76,3 +76,13 @@ function userpoints_views_data() { return $data; } +/** + * Implementation of hook_views_data_alter(). + */ +function userpoints_views_data_alter(&$data){ + $data['term_data']['table']['join']['userpoints'] = array( + 'left_field' => 'tid', + 'field' => 'tid', + ); + return $data; +}