--- links_views.inc	2009-03-26 11:54:51.000000000 -0700
+++ links_views-term-node.inc	2009-03-26 11:56:38.000000000 -0700
@@ -120,3 +120,23 @@ function links_views_data() {
     'links_node' => $links_node,
   );
 }
+
+/**
+ * Use hook_views_data_alter to access taxonomy terms
+ * This allows to join these tables, when links is the base table.
+ */
+function links_views_data_alter(&$links) {
+
+	$links['term_node']['table']['join']['links'] = array(
+	  'left_table' => 'links_node',
+	  'left_field' => 'nid',
+	  'field' => 'nid',
+	  'type' => 'INNER',
+	);
+	
+	$links['links_node']['table']['join']['links'] = array(
+	  'left_field' => 'lid',
+	  'field' => 'lid',
+	  'type' => 'INNER',
+	);
+}
\ No newline at end of file
