You are here

function commons_update_3106 in Drupal Commons 7.3

Enable the Addressfield and Addressfield tokens module.

File

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

Code

function commons_update_3106() {
  $module_list = array(
    'addressfield',
    'addressfield_tokens',
  );
  module_enable($module_list);
  return array();
}