function hook_comment_update

hook_comment_update($comment)

The comment is being updated.

Parameters

$comment: The comment object.

Related topics

File

modules/comment/comment.api.php, line 43
Hooks provided by the Comment module.

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!comment!comment.api.php/function/hook_comment_update/7.x