You are here

function custom_pub_update_7101 in Custom Publishing Options 7

Updates the Custom Publishing Options modules weight in the system table.

File

./custom_pub.install, line 62
Install and update function for Custom Publishing Options.

Code

function custom_pub_update_7101() {
  db_update('system')
    ->fields(array(
    'weight' => 10,
  ))
    ->condition('name', 'custom_pub')
    ->execute();
}