comment_nodeapi_prepare

Definition

comment_nodeapi_prepare($node)
drupal/modules/comment/comment.module, line 626

Description

Implementation of hook_nodeapi_prepare().

Code

function comment_nodeapi_prepare($node) {
  if (!isset($node->comment)) {
    $node->comment = variable_get("comment_$node->type", COMMENT_NODE_READ_WRITE);
  }
}