| 5 comment.module | comment_form_box($edit, $title = NULL) |
| 6 comment.module | comment_form_box($edit, $title = NULL) |
Theme the comment form box.
Parameters
$edit: The form structure.
$title: The form title.
3 calls to comment_form_box()
File
- modules/
comment/ comment.module, line 1417 - 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));
}
Login or register to post comments