comment_save_action

Versions
mediamosa-21
comment_save_action($comment)

Saves a comment.

Related topics

Code

modules/comment/comment.module, line 2480

<?php
function comment_save_action($comment) {
  comment_save($comment);
  watchdog('action', 'Saved comment %title', array('%title' => $comment->subject));
}
?>