diff options
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 72099c13b..8f90417cc 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -248,7 +248,7 @@ function comment_nodeapi(&$node, $op, $arg = 0) { $comments = db_result(db_query('SELECT comment_count FROM {node_comment_statistics} WHERE nid = %d', $node->nid)); return format_plural($comments, '1 comment', '%count comments'); - case 'rsss item': + case 'rss item': return array(array('key' => 'comments', 'value' => url('node/'. $node->nid, NULL, 'comment', TRUE))); } } |