You are here

function hosting_update_6206 in Hosting 7.3

Same name and namespace in other branches
  1. 6.2 hosting.install \hosting_update_6206()
  2. 7.4 hosting.install \hosting_update_6206()

Enable the jquery_update module.

File

./hosting.install, line 531
Define database schemas and update functions for the hosting module.

Code

function hosting_update_6206() {
  $ret = array();
  module_enable(array(
    'jquery_update',
  ));
  return $ret;
}