"The link this field to its comment" functionality for comment titles does not work currently. The problem is in line 40 of views/modules/comment/views_handler_field_comment.inc:

      $this->options['alter']['path'] = $values->{$this->aliases['nid']};

should be

      $this->options['alter']['path'] = 'node/' . $values->{$this->aliases['nid']};

To test enable the "comments_recent" view.

Comments

hectorplus’s picture

Nice fix.

edgarpe’s picture

I can confirm the problem exists and the fix above works.

akwala’s picture

subscribe

bauhaus’s picture

Thank you,
working. ;)

merlinofchaos’s picture

Status: Active » Fixed

I committed the patch from http://drupal.org/node/371466 which is essentially the same. (I saw that one first)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.