| Versions | |
|---|---|
| 7 | hook_comment_insert($comment) |
The comment is being inserted.
$comment The comment object.
drupal/
<?php
function hook_comment_insert($comment) {
// Reindex the node when comments are added.
search_touch_node($comment->nid);
}
?>