From e4e416d1f7037dbee8e06096a6c41368d011599c Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Thu, 13 Jul 2006 12:29:15 +0000 Subject: [PATCH] - Patch #73351 by Kris, Goba et al: only display comment link in RSS, if applicable. --- modules/comment/comment.module | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 6272aa4369f3..c89d2f1d949c 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -328,7 +328,12 @@ function comment_nodeapi(&$node, $op, $arg = 0) { 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 != COMMENT_NODE_DISABLED) { + return array(array('key' => 'comments', 'value' => url('node/'. $node->nid, NULL, 'comment', TRUE))); + } + else { + return array(); + } } } -- GitLab