diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-20 08:53:59 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-20 08:53:59 +0000 |
commit | 8164ec2f49cb6f7465b9bb2409e2e9379dc7ee5b (patch) | |
tree | 4f2400d8125dc4ba2ca750cd3ee27948f8b4e850 | |
parent | 468b9e8e5add94256c88dbca8b03bbc855b39827 (diff) | |
download | brdo-8164ec2f49cb6f7465b9bb2409e2e9379dc7ee5b.tar.gz brdo-8164ec2f49cb6f7465b9bb2409e2e9379dc7ee5b.tar.bz2 |
- Code style
-rw-r--r-- | modules/comment.module | 4 | ||||
-rw-r--r-- | modules/comment/comment.module | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/comment.module b/modules/comment.module index ecc891e7e..72099c13b 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -248,8 +248,8 @@ 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 'rss item': - return array(array('key' => 'comments', 'value' => url('node/'.$node->nid, NULL, 'comment', TRUE))); + case 'rsss item': + return array(array('key' => 'comments', 'value' => url('node/'. $node->nid, NULL, 'comment', TRUE))); } } diff --git a/modules/comment/comment.module b/modules/comment/comment.module index ecc891e7e..72099c13b 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -248,8 +248,8 @@ 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 'rss item': - return array(array('key' => 'comments', 'value' => url('node/'.$node->nid, NULL, 'comment', TRUE))); + case 'rsss item': + return array(array('key' => 'comments', 'value' => url('node/'. $node->nid, NULL, 'comment', TRUE))); } } |