? handler_field_comment_right_link.patch ? handler_field_comment_right_link.patfch Index: modules/comment/views_handler_field_comment.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/comment/views_handler_field_comment.inc,v retrieving revision 1.4 diff -u -p -r1.4 views_handler_field_comment.inc --- modules/comment/views_handler_field_comment.inc 30 Jan 2009 00:01:42 -0000 1.4 +++ modules/comment/views_handler_field_comment.inc 10 Feb 2009 19:27:29 -0000 @@ -37,7 +37,7 @@ class views_handler_field_comment extend function render_link($data, $values) { if (!empty($this->options['link_to_comment']) && $data !== NULL && $data !== '') { $this->options['alter']['make_link'] = TRUE; - $this->options['alter']['path'] = $values->{$this->aliases['nid']}; + $this->options['alter']['path'] = "node/". $values->{$this->aliases['nid']}; $this->options['alter']['fragment'] = "comment-" . $values->{$this->aliases['cid']}; }