--- location/contrib/location_views/location_views.module	Mon Jul 07 14:38:04 2008
+++ location/contrib/location_views/location_views_patched.module	Fri Jul 11 00:59:29 2008
@@ -100,6 +100,42 @@ function location_views_tables() {
     ),
   );
 
+  if (module_exists('location_fax')) {
+    $tables['location_fax'] = array(
+      'name' => 'location_fax',
+      'join' => array(
+        'left' => array(
+          'table' => 'location_instance_node',
+          'field' => 'lid',
+        ),
+        'right' => array(
+          'field' => 'lid',
+        ),
+      ),
+      'fields' => array(
+        'fax' => array('name' => t('Location: Fax'), 'sortable' => true),
+      ),
+    );
+  }
+
+  if (module_exists('location_phone')) {
+    $tables['location_phone'] = array(
+      'name' => 'location_phone',
+      'join' => array(
+        'left' => array(
+          'table' => 'location_instance_node',
+          'field' => 'lid',
+        ),
+        'right' => array(
+          'field' => 'lid',
+        ),
+      ),
+      'fields' => array(
+        'phone' => array('name' => t('Location: Phone'), 'sortable' => true),
+      ),
+    );
+  }
+
   if (module_exists('usernode')) {
     $tables['location_instance_user'] = array(
       'name' => 'location_instance',
