You are here

function custom_search_update_7100 in Custom Search 7

Increases the module weight.

File

./custom_search.install, line 37
Install, update, and uninstall functions for the custom search module.

Code

function custom_search_update_7100() {
  db_update('system')
    ->fields(array(
    'weight' => 100,
  ))
    ->condition('name', 'custom_search')
    ->execute();
  return t("Module's weight increased.");
}