You are here

function comment_og_form_box in Comment OG 6

Modified version of comment_form_box() used for editing by group administrators

1 call to comment_og_form_box()
comment_og_comment_edit in ./comment_og.module
Returns comment form if the option is enabled and the acting user is a group admin Otherwise, revert to the default behavior

File

./comment_og.module, line 278

Code

function comment_og_form_box($edit, $group) {
  return theme('box', NULL, drupal_get_form('comment_og_form', $edit, $group));
}