function search_comment_unpublish

7.x search.module search_comment_unpublish($comment)

Implements hook_comment_unpublish().

File

drupal-7.x/modules/search/search.module, line 850
Enables site-wide keyword searching.

Code

function search_comment_unpublish($comment) {
  // Reindex the node when comments are unpublished.
  search_touch_node($comment->nid);
}