function custom_search_update_6100 in Custom Search 6
Increase the module weight.
File
- ./
custom_search.install, line 88 - Install, update, and uninstall functions for the custom search module.
Code
function custom_search_update_6100() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 100 WHERE name = 'custom_search'");
return $ret;
}