function hosting_update_6000 in Hostmaster (Aegir) 6
Implements hook_update_N().
Enable the modalframe and jquery_ui modules.
File
- modules/
hosting/ hosting.install, line 82 - Install, update and uninstall for the hosting module.
Code
function hosting_update_6000() {
$ret = array();
module_enable(array(
'modalframe',
'jquery_ui',
));
return $ret;
}