You are here

function custom_search_blocks_update_7100 in Custom Search 7

Change module weight.

File

modules/custom_search_blocks/custom_search_blocks.install, line 30
Install, update, and uninstall functions for the custom search module.

Code

function custom_search_blocks_update_7100() {
  db_update('system')
    ->fields(array(
    'weight' => 99,
  ))
    ->condition('name', 'custom_search_blocks')
    ->execute();
}