You are here

function location_www_update_5302 in Location 7.3

Location 3.0 update 2. Change weight of module.

File

contrib/location_www/location_www.install, line 94
Install, update and uninstall functions for the location_www module.

Code

function location_www_update_5302() {

  // Change weight.
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'location_www')
    ->condition('type', 'module')
    ->execute();
}