function search_comment_delete

Implements hook_comment_delete().

File

drupal/modules/search/search.module, line 834
Enables site-wide keyword searching.

Code

function search_comment_delete($comment) {

  // Reindex the node when comments are deleted.
  search_touch_node($comment->nid);
}