comment_node_prepare

Versions
7
comment_node_prepare($node)

Implements hook_node_prepare().

Code

modules/comment/comment.module, line 1131

<?php
function comment_node_prepare($node) {
  if (!isset($node->comment)) {
    $node->comment = variable_get("comment_$node->type", COMMENT_NODE_OPEN);
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.