theme_comment_flat_collapsed

5 comment.module theme_comment_flat_collapsed($comment)
6 comment.module theme_comment_flat_collapsed($comment, $node)

Theme comment flat collapsed view.

Parameters

$comment: The comment to be themed.

$node: The comment node.

Related topics

1 theme call to theme_comment_flat_collapsed()

File

modules/comment/comment.module, line 1731
Enables users to comment on published content.

Code

function theme_comment_flat_collapsed($comment, $node) {
  return theme('comment_view', $comment, $node, '', 0);
}
Login or register to post comments