comment_node_insert

Versions
mediamosa-21
comment_node_insert($node)

Implements hook_node_insert().

Code

modules/comment/comment.module, line 1231

<?php
function comment_node_insert($node) {
  db_insert('node_comment_statistics')
    ->fields(array(
      'nid' => $node->nid,
      'cid' => 0,
      'last_comment_timestamp' => $node->changed,
      'last_comment_name' => NULL,
      'last_comment_uid' => $node->uid,
      'comment_count' => 0,
    ))
    ->execute();
}
?>