theme_comment_flat_collapsed

Definition

theme_comment_flat_collapsed($comment, $threshold)
drupal/modules/comment.module, line 1565

Code

function theme_comment_flat_collapsed($comment, $threshold) {
  if (comment_visible($comment, $threshold)) {
    return theme('comment_view', $comment, '', 0);
  }
  return '';
}