? relativity-300834-2.patch ? relativity-300834-drupal6.patch ? relativity-remove-t-call.patch Index: relativity.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/relativity/relativity.module,v retrieving revision 1.46.2.7 diff -u -p -r1.46.2.7 relativity.module --- relativity.module 10 Jul 2009 14:41:43 -0000 1.46.2.7 +++ relativity.module 19 Aug 2009 15:51:39 -0000 @@ -1585,7 +1585,7 @@ function theme_relativity_show_children( switch ($child_display_option) { case 'title': $children_box .= node_get_types('name', $childtype) .': '; - $children_box .= l(t($child_node->title), 'node/'. $child_node->nid, array('class' => 'relativity_view_'. $childtype)) ."
\n"; + $children_box .= l($child_node->title, 'node/'. $child_node->nid, array('class' => 'relativity_view_'. $childtype)) ."
\n"; break; case 'teaser': $children_box .= theme('fieldset', array('#title' => node_get_types('name', $childtype), @@ -1661,7 +1661,7 @@ function theme_relativity_show_link_oper $output .= '
'; $output .= l(t('Remove '. node_get_types('name', $child_node->type)), "relativity/unparent/$parent_nid/$child_node->nid", array('class' => 'relativity_remove_'. $type)); $output .= ' : '; // separator - $output .= t($child_node->title) ; // note not a link: helps prevent accidental removal + $output .= $child_node->title; // note not a link: helps prevent accidental removal $output .= "
\n"; } } @@ -1745,7 +1745,7 @@ function theme_relativity_ancestor($ance return ''; } $output .= '
'; - $output .= node_get_types('name', $ancestor->type) .': '. l(t($ancestor->title), 'node/'. $ancestor->nid, array('class' => 'relativity_view_'. $type)); + $output .= node_get_types('name', $ancestor->type) .': '. l($ancestor->title, 'node/'. $ancestor->nid, array('class' => 'relativity_view_'. $type)); $output .= '
'; return $output; }