function forum_comment_publish

7.x forum.module forum_comment_publish($comment)

Implements hook_comment_publish().

This actually handles the insertion and update of published nodes since comment_save() calls hook_comment_publish() for all published comments.

File

drupal-7.x/modules/forum/forum.module, line 492
Provides discussion forums.

Code

function forum_comment_publish($comment) {
  _forum_update_forum_index($comment->nid);
}