You are here

function hosting_update_6206 in Hosting 6.2

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

Enable the jquery_update module.

File

./hosting.install, line 510
Install, update and uninstall for the hosting module.

Code

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