You are here

function location_fax_update_5302 in Location 7.3

Same name and namespace in other branches
  1. 5.3 contrib/location_fax/location_fax.install \location_fax_update_5302()
  2. 6.3 contrib/location_fax/location_fax.install \location_fax_update_5302()
  3. 7.5 contrib/location_fax/location_fax.install \location_fax_update_5302()
  4. 7.4 contrib/location_fax/location_fax.install \location_fax_update_5302()

Location 3.0 update 2.

Change weight of module.

File

contrib/location_fax/location_fax.install, line 98
Install, update and uninstall functions for the location_fax module.

Code

function location_fax_update_5302() {

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