You are here

function exif_location_install in Exif 6

Same name and namespace in other branches
  1. 7 exif_location/exif_location.install \exif_location_install()

File

exif_location/exif_location.install, line 10
This is the exif location install part

Code

function exif_location_install() {
  $ret = array();
  $ret[] = db_query("UPDATE {system} SET weight = -2 WHERE name = 'exif_location'");
  return $ret;
}