? .git
? .gitignore
? 1006644-fields-no_bundle.pathc
? 1024586-rename_fieldapi.patch
? 1043078-fix_filter_groups.patcu
? 1053164-random_sort.patch
? 1055602-argument_search.patch
? 1056824-permission-rename.patch
? 1056994-argument_validator_user-notice.patch
? 1062074-display-base.patch
? 1063208-file_usage-join-table.patch
? 875338-set_current_page_view.patch
? 957284-filter_search-followup.patch
? 975400-refactor-field_render.ptach
? FALSE,
? add_where_expression
? base_table
? view-
? views-b
? views-term_fields_contain_tid_only.patch.1
? views_formatter_settings-884730-
? help/localization.html
? modules/filter.views_convert.inc
? modules/system.views_convert.inc
? modules/field/views_handler_field_field_multiple.inc
? tests/field
? tests/taxonomy
? tests/views_handler_filter_date.test
Index: modules/system.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/system.views.inc,v
retrieving revision 1.7.6.8
diff -u -p -r1.7.6.8 system.views.inc
--- modules/system.views.inc	22 Jan 2011 22:49:09 -0000	1.7.6.8
+++ modules/system.views.inc	16 Feb 2011 14:05:09 -0000
@@ -198,31 +198,31 @@ function system_views_data() {
     'node' => array(
       'field' => 'id',
       'left_field' => 'nid',
-      'extra' => array(array('table' => 'file_usage', 'field' => 'type', 'value' => 'node')),
+      'extra' => array(array('field' => 'type', 'value' => 'node')),
     ),
     // Link ourself to the {users} table so we can provide user->file relationships.
     'users' => array(
       'field' => 'id',
       'left_field' => 'uid',
-      'extra' => array(array('table' => 'file_usage', 'field' => 'type', 'value' => 'user')),
+      'extra' => array(array('field' => 'type', 'value' => 'user')),
     ),
     // Link ourself to the {comment} table so we can provide comment->file relationships.
     'comment' => array(
       'field' => 'id',
       'left_field' => 'cid',
-      'extra' => array(array('table' => 'file_usage', 'field' => 'type', 'value' => 'comment')),
+      'extra' => array(array('field' => 'type', 'value' => 'comment')),
     ),
     // Link ourself to the {taxonomy_term_data} table so we can provide taxonomy_term->file relationships.
     'taxonomy_term_data' => array(
       'field' => 'id',
       'left_field' => 'tid',
-      'extra' => array(array('table' => 'file_usage', 'field' => 'type', 'value' => 'taxonomy_term')),
+      'extra' => array(array('field' => 'type', 'value' => 'taxonomy_term')),
     ),
     // Link ourself to the {taxonomy_vocabulary} table so we can provide taxonomy_vocabulary->file relationships.
     'taxonomy_vocabulary' => array(
       'field' => 'id',
       'left_field' => 'vid',
-      'extra' => array(array('table' => 'file_usage', 'field' => 'type', 'value' => 'taxonomy_vocabulary')),
+      'extra' => array(array('field' => 'type', 'value' => 'taxonomy_vocabulary')),
     ),
   );
 
