comment_nodeapi_rss_item($node)
drupal/modules/comment/comment.module, line 689
Implementation of hook_nodeapi_rss_item().
function comment_nodeapi_rss_item($node) {
if ($node->comment != COMMENT_NODE_DISABLED) {
return array(array('key' => 'comments', 'value' => url('node/' . $node->nid, array('fragment' => 'comments', 'absolute' => TRUE))));
}
else {
return array();
}
}