function comment_node_prepare
Implements hook_node_prepare().
Archivo
- drupal-7.x/
modules/ comment/ comment.module, line 1292 - Enables users to comment on published content.
Código
function comment_node_prepare($node) {
if (!isset($node->comment)) {
$node->comment = variable_get("comment_$node->type", COMMENT_NODE_OPEN);
}
}