You are here

function theme_comment_wrapper in Drupal 5

Allow themable wrapping of all comments.

1 theme call to theme_comment_wrapper()
comment_render in modules/comment/comment.module
Renders comment(s).

File

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

Code

function theme_comment_wrapper($content) {
  return '<div id="comments">' . $content . '</div>';
}