function filter_update_dependencies in Drupal 7
Implements hook_update_dependencies().
File
- modules/
filter/ filter.install, line 154 - Install, update, and uninstall functions for the Filter module.
Code
function filter_update_dependencies() {
// filter_update_7005() migrates role permissions and therefore must run
// after the {role} and {role_permission} tables are properly set up, which
// happens in user_update_7007().
$dependencies['filter'][7005] = array(
'user' => 7007,
);
return $dependencies;
}