1 comment.install | comment_update_dependencies() |
Implements hook_update_dependencies().
File
- core/
modules/ comment/ comment.install, line 319 - Install, update and uninstall functions for the Comment module.
Code
function comment_update_dependencies() {
// comment_update_1001() updates comment variables to save into the node
// type config files, which are created in node_update_1005().
$dependencies['comment'][1001] = array(
'node' => 1005,
);
return $dependencies;
}