diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-20 08:56:34 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-20 08:56:34 +0000 |
commit | e83b00d52693d87cba2be1ad8b80df6d34519d26 (patch) | |
tree | 8667b9de1bd14fab28b32e2d51c47cc29c4f9895 /modules/comment.module | |
parent | 8164ec2f49cb6f7465b9bb2409e2e9379dc7ee5b (diff) | |
download | brdo-e83b00d52693d87cba2be1ad8b80df6d34519d26.tar.gz brdo-e83b00d52693d87cba2be1ad8b80df6d34519d26.tar.bz2 |
- Typo
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module index 72099c13b..8f90417cc 100644 --- a/modules/comment.module +++ b/modules/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))); } } |