| Versions | |
|---|---|
| 4.7 – 5 | comment_form_submit( |
| 6 – 7 | comment_form_submit($form, &$form_state) |
modules/
<?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");
}
}
?>