Index: comment.module =================================================================== --- comment.module +++ comment.module @@ -307,7 +307,11 @@ return format_plural($comments, '1 comment', '%count comments'); case 'rss item': - return array(array('key' => 'comments', 'value' => url('node/'. $node->nid, NULL, 'comment', TRUE))); + if ( $node->comment > 0 ) { + return array(array('key' => 'comments', 'value' => url('node/'. $node->nid, NULL, 'comment', TRUE))); + } else { + return array(); + } } }