| 5 comment.module | comment_num_replies($pid) |
| 6 comment.module | comment_num_replies($pid) |
1 call to comment_num_replies()
File
- modules/
comment.module, line 1116 - Enables users to comment on published content.
Code
function comment_num_replies($pid) {
static $cache;
if (!isset($cache[$pid])) {
$cache[$pid] = db_result(db_query('SELECT COUNT(cid) FROM {comments} WHERE pid = %d AND status = %d', $pid, COMMENT_PUBLISHED));
}
return $cache[$pid];
}
Login or register to post comments