| 5 comment.module | theme_comment_thread_collapsed($comment) |
| 6 comment.module | theme_comment_thread_collapsed($comment, $node) |
1 theme call to theme_comment_thread_collapsed()
File
- modules/
comment/ comment.module, line 1798 - Enables users to comment on published content.
Code
function theme_comment_thread_collapsed($comment) {
$output .= theme('comment_view', $comment, '', 0);
return $output;
}
Login or register to post comments