Index: relativity.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/relativity/relativity.module,v retrieving revision 1.41.2.11 diff -u -p -r1.41.2.11 relativity.module --- relativity.module 12 Jan 2008 02:28:10 -0000 1.41.2.11 +++ relativity.module 25 Mar 2009 00:16:12 -0000 @@ -1491,7 +1491,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), @@ -1568,7 +1568,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"; } } @@ -1647,7 +1649,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; }