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