Index: handlers/views_handler_relationship.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/handlers/views_handler_relationship.inc,v retrieving revision 1.1 diff -u -p -r1.1 views_handler_relationship.inc --- handlers/views_handler_relationship.inc 3 Sep 2008 19:21:28 -0000 1.1 +++ handlers/views_handler_relationship.inc 22 Sep 2009 19:43:15 -0000 @@ -23,11 +23,11 @@ * - base: The new base table this relationship will be adding. This does not * have to be a declared base table, but if there are no tables that * utilize this base table, it won't be very effective. - * - base field: The field to use in the relationship; if left out this iwll be + * - base field: The field to use in the relationship; if left out this will be * assumed to be the primary field. * - relationship table: The actual table this relationship operates against. * This is analogous to using a 'table' override. - * - relationship field: The actual field this relationsihp operates against. + * - relationship field: The actual field this relationship operates against. * This is analogous to using a 'real field' override. * - label: The default label to provide for this relationship, which is * shown in parentheses next to any field/sort/filter/argument that uses Index: modules/book.views.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/book.views.inc,v retrieving revision 1.5 diff -u -p -r1.5 book.views.inc --- modules/book.views.inc 2 Dec 2008 19:37:08 -0000 1.5 +++ modules/book.views.inc 22 Sep 2009 19:43:15 -0000 @@ -31,7 +31,7 @@ function book_views_data() { 'help' => t('The book the node is in.'), 'relationship' => array( 'base' => 'node', - 'field' => 'bid', + 'base field' => 'bid', 'handler' => 'views_handler_relationship', 'label' => t('Book'), ), @@ -111,7 +111,7 @@ function book_views_data() { 'help' => t('The parent book node.'), 'relationship' => array( 'base' => 'node', - 'field' => 'nid', + 'base field' => 'nid', 'handler' => 'views_handler_relationship', 'label' => t('Book parent'), ), Index: modules/comment.views.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/comment.views.inc,v retrieving revision 1.32 diff -u -p -r1.32 comment.views.inc --- modules/comment.views.inc 8 Apr 2009 06:38:41 -0000 1.32 +++ modules/comment.views.inc 22 Sep 2009 19:43:16 -0000 @@ -204,7 +204,7 @@ function comment_views_data() { 'help' => t('Display the standard comment link used on regular nodes.'), 'handler' => 'views_handler_field_comment_node_link', ), - ); + ); $data['comments']['thread'] = array( 'field' => array( @@ -224,7 +224,7 @@ function comment_views_data() { 'help' => t('The node the comment is a reply to.'), 'relationship' => array( 'base' => 'node', - 'field' => 'nid', + 'base field' => 'nid', 'handler' => 'views_handler_relationship', 'label' => t('Node'), ), @@ -235,7 +235,7 @@ function comment_views_data() { 'help' => t("The User ID of the comment's author."), 'relationship' => array( 'base' => 'users', - 'field' => 'uid', + 'base field' => 'uid', 'handler' => 'views_handler_relationship', 'label' => t('User'), ), @@ -251,7 +251,7 @@ function comment_views_data() { 'title' => t('Parent comment'), 'help' => t('The parent comment.'), 'base' => 'comments', - 'field' => 'cid', + 'base field' => 'cid', 'handler' => 'views_handler_relationship', 'label' => t('Parent comment'), ), @@ -267,7 +267,7 @@ function comment_views_data() { $data['node_comment_statistics']['table']['join'] = array( //...to the node table 'node' => array( - 'type' => 'INNER', + 'type' => 'INNER', 'left_field' => 'nid', 'field' => 'nid', ), Index: modules/node.views.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/node.views.inc,v retrieving revision 1.93 diff -u -p -r1.93 node.views.inc --- modules/node.views.inc 8 Apr 2009 20:54:57 -0000 1.93 +++ modules/node.views.inc 22 Sep 2009 19:43:16 -0000 @@ -351,7 +351,7 @@ function node_views_data() { 'relationship' => array( 'handler' => 'views_handler_relationship', 'base' => 'users', - 'field' => 'uid', + 'base field' => 'uid', 'label' => t('user'), ), ); Index: modules/statistics.views.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/statistics.views.inc,v retrieving revision 1.9 diff -u -p -r1.9 statistics.views.inc --- modules/statistics.views.inc 28 Oct 2008 20:21:37 -0000 1.9 +++ modules/statistics.views.inc 22 Sep 2009 19:43:16 -0000 @@ -206,7 +206,7 @@ function statistics_views_data() { 'relationship' => array( 'handler' => 'views_handler_relationship', 'base' => 'users', - 'field' => 'uid', + 'base field' => 'uid', ), ); Index: modules/upload.views.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/upload.views.inc,v retrieving revision 1.15 diff -u -p -r1.15 upload.views.inc --- modules/upload.views.inc 24 Nov 2008 19:58:31 -0000 1.15 +++ modules/upload.views.inc 22 Sep 2009 19:43:16 -0000 @@ -129,7 +129,7 @@ function upload_views_data_alter(&$data) 'relationship table' => 'upload', 'relationship field' => 'fid', 'base' => 'files', - 'field' => 'fid', + 'base field' => 'fid', 'handler' => 'views_handler_relationship', 'label' => t('Files'), ),