search_comment_insert
- Versions
- 7
search_comment_insert($comment)
Implements hook_comment_insert().
Code
modules/search/search.module, line 749
<?php
function search_comment_insert($comment) {
// Reindex the node when comments are added.
search_touch_node($comment->nid);
}
?>Login or register to post comments 