You are here

function advanced_forum_comment_publish in Advanced Forum 7.2

Implements hook_comment_publish().

File

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

Code

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