theme_comment_thread_expanded

Definition

theme_comment_thread_expanded($comment)
comment/comment.module, line 1803

Code

<?php
function theme_comment_thread_expanded($comment) {
  $output = '';
  $output .= theme('comment_view', $comment, module_invoke_all('link', 'comment', $comment, 0));
  return $output;
}
?>