comment_form_submit

Versions
4.7 – 5
comment_form_submit($form_id, $form_values)
6 – 7
comment_form_submit($form, &$form_state)

Code

modules/comment.module, line 1449

<?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
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.