? translations/.new.ZwWqyi Index: handlers/views_handler_relationship.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/handlers/views_handler_relationship.inc,v retrieving revision 1.1.2.1 diff -u -p -r1.1.2.1 views_handler_relationship.inc --- handlers/views_handler_relationship.inc 26 Jun 2009 00:23:37 -0000 1.1.2.1 +++ handlers/views_handler_relationship.inc 22 Sep 2009 19:47:47 -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:47:47 -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.2.1 diff -u -p -r1.32.2.1 comment.views.inc --- modules/comment.views.inc 15 Sep 2009 16:48:47 -0000 1.32.2.1 +++ modules/comment.views.inc 22 Sep 2009 19:47:47 -0000 @@ -242,7 +242,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( @@ -262,7 +262,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'), ), @@ -273,7 +273,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'), ), @@ -289,7 +289,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'), ), @@ -305,7 +305,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.2.5 diff -u -p -r1.93.2.5 node.views.inc --- modules/node.views.inc 15 Sep 2009 21:54:47 -0000 1.93.2.5 +++ modules/node.views.inc 22 Sep 2009 19:47:47 -0000 @@ -417,7 +417,7 @@ function node_views_data() { 'relationship' => array( 'handler' => 'views_handler_relationship', 'base' => 'users', - 'field' => 'uid', + 'base field' => 'uid', 'label' => t('revision 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:47:48 -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.2.1 diff -u -p -r1.15.2.1 upload.views.inc --- modules/upload.views.inc 1 Jul 2009 23:06:44 -0000 1.15.2.1 +++ modules/upload.views.inc 22 Sep 2009 19:47:48 -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'), ),