You are here

function select_with_style_update_7110 in Select with Style 7

Implements hook_update_N().

Increase the module weight so that we reliably override implementations of Views filter widgets

File

select_with_style/select_with_style.install, line 27
select_with_style.install

Code

function select_with_style_update_7110() {
  db_update('system')
    ->fields(array(
    'weight' => 100,
  ))
    ->condition('name', 'select_with_style')
    ->execute();
}