diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-06-17 00:52:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-06-17 00:52:00 +0000 |
commit | d8ff9967e6030a3e07885e807cb04e25cb23672c (patch) | |
tree | 50c5bca63837a8522aa261f9168ec87f229ae58b /modules/comment/comment.module | |
parent | fcb27eed2302a13733ee697ec55fc1f2ba1e3843 (diff) | |
download | brdo-d8ff9967e6030a3e07885e807cb04e25cb23672c.tar.gz brdo-d8ff9967e6030a3e07885e807cb04e25cb23672c.tar.bz2 |
- Patch #250729 by R.Muilwijk: fixed typo.
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 56000102c..635f64192 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -592,7 +592,7 @@ function comment_nodeapi(&$node, $op, $arg = 0) { if ($node->comment != COMMENT_NODE_DISABLED) { return db_fetch_array(db_query("SELECT last_comment_timestamp, last_comment_name, comment_count FROM {node_comment_statistics} WHERE nid = %d", $node->nid)); } - return array('last_comment_timestamp' => $node->created, 'last_comment_name' => '', 'commenet_count' => 0); + return array('last_comment_timestamp' => $node->created, 'last_comment_name' => '', 'comment_count' => 0); case 'prepare': if (!isset($node->comment)) { |