comment_node_search_result($node)Implements hook_node_search_result().
modules/comment/comment.module, line 1280
<?php
function comment_node_search_result($node) {
if ($node->comment != COMMENT_NODE_HIDDEN) {
$comments = db_query('SELECT comment_count FROM {node_comment_statistics} WHERE nid = :nid', array('nid' => $node->nid))->fetchField();
return format_plural($comments, '1 comment', '@count comments');
}
return '';
}
?>