You are here

function content_theme_update_7200 in Content Theme 7.2

Set module's weight to 40.

File

./content_theme.install, line 168
Install, update and uninstall functions for the content_theme module.

Code

function content_theme_update_7200() {
  db_update('system')
    ->fields(array(
    'weight' => 40,
  ))
    ->condition('name', 'content_theme')
    ->execute();
}