function hosting_update_1 in Hosting 6.2
Same name and namespace in other branches
- 5 hosting.install \hosting_update_1()
- 7.4 hosting.install \hosting_update_1()
- 7.3 hosting.install \hosting_update_1()
Implements hook_update_N().
File
- ./
hosting.install, line 47 - Install, update and uninstall for the hosting module.
Code
function hosting_update_1() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE type='module' and name='hosting'");
return $ret;
}