function theme_comment_thread_collapsed

6.x comment.module theme_comment_thread_collapsed($comment, $node)

Theme comment thread collapsed view.

Parameters

$comment: The comment to be themed.

$node: The comment node.

Related topics

1 theme call to theme_comment_thread_collapsed()
comment_render in drupal-6.x/modules/comment/comment.module
Renders comment(s).

File

drupal-6.x/modules/comment/comment.module, line 1759
Enables users to comment on published content.

Code

function theme_comment_thread_collapsed($comment, $node) {
  return theme('comment_view', $comment, $node, '', 0);
}