function hosting_update_6208 in Hosting 6.2
Enable the ctools module in preparation of a future upgrade to 7.x-3.x.
See also
https://www.drupal.org/node/2267057
File
- ./
hosting.install, line 538 - Install, update and uninstall for the hosting module.
Code
function hosting_update_6208() {
$ret = array();
module_enable(array(
'ctools',
));
return $ret;
}