diff --git a/wysiwyg.install b/wysiwyg.install index be8624f6503e9c20e1d2bf31b845b222f4029c6e..20a50ed1bdace0eced24d522145bc8038ad7f72e 100644 --- a/wysiwyg.install +++ b/wysiwyg.install @@ -49,6 +49,19 @@ function wysiwyg_enable() { )); } +/** + * Implements hook_update_dependencies(). + */ +function wysiwyg_update_dependencies() { + // Ensure that format columns are only changed after Filter module has changed + // the primary records. + $dependencies['wysiwyg'][7000] = array( + 'filter' => 7010, + ); + + return $dependencies; +} + /** * Retrieve a list of input formats to associate profiles to. */ @@ -163,19 +176,6 @@ function wysiwyg_update_6200() { return $ret; } -/** - * Implementation of hook_update_dependencies(). - */ -function wysiwyg_update_dependencies() { - // Ensure that format columns are only changed after Filter module has changed - // the primary records. - $dependencies['wysiwyg'][7000] = array( - 'filter' => 7010, - ); - - return $dependencies; -} - /** * Change {wysiwyg}.format into a string. */