Community Documentation

comment_form_submit

5 comment.module comment_form_submit($form_id, $form_values)
6 comment.module comment_form_submit($form, &$form_state)
7 comment.module comment_form_submit($form, &$form_state)
8 comment.module comment_form_submit($form, &$form_state)

File

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

Code

<?php
function comment_form_submit($form_id, $form_values) {
  $form_values = _comment_form_submit($form_values);
  if ($cid = comment_save($form_values)) {
    return array('node/' . $form_values['nid'], NULL, "comment-$cid");
  }
}
?>
Login or register to post comments