1 search.module | search_comment_unpublish($comment) |
Implements hook_comment_unpublish().
File
- core/
modules/ search/ search.module, line 909 - Enables site-wide keyword searching.
Code
function search_comment_unpublish($comment) {
// Reindex the node when comments are unpublished.
search_touch_node($comment->nid);
}