You are here

function location_views_update_5300 in Location 5.3

Location 3.0 update 1. Change weight of module.

File

contrib/location_views/location_views.install, line 29
Installation routines for location_views.

Code

function location_views_update_5300() {
  $ret = array();

  // Change weight.
  $ret[] = update_sql("UPDATE {system} SET weight = 1 WHERE name = '%s' AND type = '%s'", 'location_views', 'module');
  return $ret;
}