comment_node_type_update
- Versions
- 7
comment_node_type_update($info)
Implements hook_node_type_update().
Code
modules/comment/comment.module, line 247
<?php
function comment_node_type_update($info) {
if (!empty($info->old_type) && $info->type != $info->old_type) {
field_attach_rename_bundle('comment', 'comment_node_' . $info->old_type, 'comment_node_' . $info->type);
}
}
?>Login or register to post comments 