You are here

function comment_og_form_add_preview in Comment OG 6

1 string reference to 'comment_og_form_add_preview'
comment_og_form in ./comment_og.module
Modified version of comment_form() used for editing by group administrators

File

./comment_og.module, line 355

Code

function comment_og_form_add_preview($form, $form_state) {
  global $user;

  // We assume that the acting user isn't the original comment author, so we add
  // the edit message to the end of the unfiltered message.
  $form_state['values']['comment'] .= comment_og_admin_edit_msg($user);
  return comment_form_add_preview($form, $form_state);
}