Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
100ea2d1
Commit
100ea2d1
authored
Apr 20, 2010
by
webchick
Browse files
#773792
by scor: Fixed contact_update_7002() depends on user_update_7006().
parent
31240fd2
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/contact/contact.install
View file @
100ea2d1
...
...
@@ -89,6 +89,18 @@ function contact_uninstall() {
variable_del
(
'contact_threshold_window'
);
}
/**
* Implements hook_update_dependencies().
*/
function
contact_update_dependencies
()
{
// Contact update 7002 calls the new user_role_grant_permissions() and
// therefore needs to run after user_update_7006();
$dependencies
[
'contact'
][
7002
]
=
array
(
'user'
=>
7006
,
);
return
$dependencies
;
}
/**
* @defgroup updates-6.x-to-7.x Contact updates from 6.x to 7.x
* @{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment