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,
  );
  // Do not modify permissions until they have been converted to config.
  $dependencies['comment'][1007] = array(
    'user' => 1007,
  );

  return $dependencies;
}