You are here

function theme_comment_thread_collapsed in Drupal 4

Same name and namespace in other branches
  1. 5 modules/comment/comment.module \theme_comment_thread_collapsed()
  2. 6 modules/comment/comment.module \theme_comment_thread_collapsed()
1 theme call to theme_comment_thread_collapsed()
comment_render in modules/comment.module

File

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

Code

function theme_comment_thread_collapsed($comment) {
  $output = '<div style="margin-left:' . $comment->depth * 25 . "px;\">\n";
  $output .= theme('comment_view', $comment, '', 0);
  $output .= "</div>\n";
  return $output;
}