You are here

function advanced_forum_comment_delete in Advanced Forum 7.2

Implements hook_comment_delete().

File

./advanced_forum.module, line 449
Enables the look and feel of other popular forum software.

Code

function advanced_forum_comment_delete($comment) {
  if (!empty($comment->node_type) && $comment->node_type == "comment_node_forum") {
    advanced_forum_statistics_replies(-1);
  }
}