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