views_handler_field_comment_link_reply.inc in Views (for Drupal 7) 6.2
File
modules/comment/views_handler_field_comment_link_reply.inc
View source
<?php
class views_handler_field_comment_link_reply extends views_handler_field_comment_link {
function render($values) {
if (!user_access('post comments')) {
return;
}
$text = !empty($this->options['text']) ? $this->options['text'] : t('reply');
return l($text, "comment/reply/" . $values->{$this->aliases['nid']} . '/' . $values->{$this->aliases['cid']});
}
}