function theme_comment_flat_expanded in Drupal 6
Same name and namespace in other branches
- 4 modules/comment.module \theme_comment_flat_expanded()
 - 5 modules/comment/comment.module \theme_comment_flat_expanded()
 
Theme comment flat expanded view.
Parameters
$comment: The comment to be themed.
$node: The comment node.
Related topics
1 theme call to theme_comment_flat_expanded()
- comment_render in modules/
comment/ comment.module  - Renders comment(s).
 
File
- modules/
comment/ comment.module, line 1744  - Enables users to comment on published content.
 
Code
function theme_comment_flat_expanded($comment, $node) {
  $links = module_invoke_all('link', 'comment', $comment, 0);
  drupal_alter('link', $links, $node, $comment);
  return theme('comment_view', $comment, $node, $links);
}