You are here

function comment_form_box in Drupal 5

Same name and namespace in other branches
  1. 6 modules/comment/comment.module \comment_form_box()
3 calls to comment_form_box()
comment_edit in modules/comment/comment.module
comment_render in modules/comment/comment.module
Renders comment(s).
comment_reply in modules/comment/comment.module
This function is responsible for generating a comment reply form. There are several cases that have to be handled, including:

File

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

Code

function comment_form_box($edit, $title = NULL) {
  return theme('box', $title, drupal_get_form('comment_form', $edit, $title));
}