blob: a1fb871d8e04046c5232ac7c64e2349f171ed41b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/*
* 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;
}
?>
|