You are here

function commons_update_3121 in Drupal Commons 7.3

Enable the Dialog module which is a requirement for Entity Embed 2.x.

File

./commons.install, line 833
Install, update and uninstall functions for the Commons install profile.

Code

function commons_update_3121() {
  if (module_exists('entity_embed')) {
    module_enable(array(
      'dialog',
    ));
  }
  return array();
}