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