function theme_comment_thread_collapsed in Drupal 5
Same name and namespace in other branches
- 4 modules/comment.module \theme_comment_thread_collapsed()
- 6 modules/comment/comment.module \theme_comment_thread_collapsed()
1 theme call to theme_comment_thread_collapsed()
- comment_render in modules/
comment/ comment.module - Renders comment(s).
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;
}