diff options
author | Silvio <s1lv10@uol.com.br> | 2010-04-23 17:23:54 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2010-04-23 17:23:54 -0300 |
commit | 96d54bf6955d8e9711a50646473620182d442d76 (patch) | |
tree | fbf260846096a3fc208195545175900bcafcca30 /exif_location/exif_location.install | |
download | exif-96d54bf6955d8e9711a50646473620182d442d76.tar.gz exif-96d54bf6955d8e9711a50646473620182d442d76.tar.bz2 |
Initial import from upstream release
Diffstat (limited to 'exif_location/exif_location.install')
-rw-r--r-- | exif_location/exif_location.install | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/exif_location/exif_location.install b/exif_location/exif_location.install new file mode 100644 index 0000000..31fc3e8 --- /dev/null +++ b/exif_location/exif_location.install @@ -0,0 +1,15 @@ +<?php +// $Id: exif_location.install,v 1.1.2.3 2010/03/19 22:17:00 rapsli Exp $ + +/** + * @file This is the exif location install part + */ + +/* + * Hook sets weight must be less than exif module (zero by default). + */ +function exif_location_install() { + $ret = array(); + $ret[] = db_query("UPDATE {system} SET weight = 2 WHERE name = 'exif_location'"); + return $ret; +} |