You are here

function ds_update_7001 in Display Suite 7

Update the weight of Display Suite.

File

./ds.install, line 306
Display suite install file.

Code

function ds_update_7001() {
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'ds')
    ->execute();
}