diff options
Diffstat (limited to 'modules/contact/contact.install')
-rw-r--r-- | modules/contact/contact.install | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/contact/contact.install b/modules/contact/contact.install index 744ad41d3..20a65e1b3 100644 --- a/modules/contact/contact.install +++ b/modules/contact/contact.install @@ -7,15 +7,6 @@ */ /** - * Implement hook_uninstall(). - */ -function contact_uninstall() { - variable_del('contact_default_status'); - variable_del('contact_threshold_limit'); - variable_del('contact_threshold_window'); -} - -/** * Implement hook_schema(). */ function contact_schema() { @@ -75,6 +66,15 @@ function contact_schema() { } /** + * Implement hook_uninstall(). + */ +function contact_uninstall() { + variable_del('contact_default_status'); + variable_del('contact_threshold_limit'); + variable_del('contact_threshold_window'); +} + +/** * @defgroup updates-6.x-to-7.x Contact updates from 6.x to 7.x * @{ */ |