You are here

function wysiwyg_update_dependencies in Wysiwyg 7.2

Implements hook_update_dependencies().

File

./wysiwyg.install, line 122
Installation functions for Wysiwyg module.

Code

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;
}