You are here

function sbp_nodes_comment_update in Search by Page 7

Implements hook_comment_update().

When a comment is added, edited, or deleted, set its node for reindexing at the next cron run.

File

./sbp_nodes.module, line 268
Module file for Search by Page Nodes, a sub-module for Search by Page.

Code

function sbp_nodes_comment_update($comment) {
  search_by_page_force_reindex('sbp_nodes', $comment->nid);
}