--- /Library/WebServer/Documents/drupal-4.7.0-rc3/modules/comment.module 2006-04-26 20:01:46.000000000 -0400 +++ comment.module 2006-04-26 19:58:43.000000000 -0400 @@ -847,6 +847,9 @@ $output .= comment_controls($mode, $order, $comments_per_page); } + $output .= theme('comment_header'); + + while ($comment = db_fetch_object($result)) { $comment = drupal_unpack($comment); $comment->name = $comment->uid ? $comment->registered_name : $comment->name; @@ -880,6 +883,9 @@ $output .= comment_form(array('nid' => $nid), t('Post new comment')); } } + + $output .= theme('comment_footer'); + return $output; }