blob: 31fc3e8d1b7cd5258948a8697353b8581a30b8eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}
|