diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-03-14 11:37:24 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-03-14 11:37:24 +0100 |
commit | 461e86423a5378d35554115f2cf6fd244692f213 (patch) | |
tree | 95b70c696045d2d6d1907c9c123d9ec07f378e3e /include/photos.php | |
parent | f70413a031bac53563751c749419d64bc2b04d9b (diff) | |
parent | a0cbed80f3e488ab3592094f88b4587c68738737 (diff) | |
download | volse-hubzilla-461e86423a5378d35554115f2cf6fd244692f213.tar.gz volse-hubzilla-461e86423a5378d35554115f2cf6fd244692f213.tar.bz2 volse-hubzilla-461e86423a5378d35554115f2cf6fd244692f213.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/photos.php')
-rw-r--r-- | include/photos.php | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/include/photos.php b/include/photos.php index b1391f284..321f7159c 100644 --- a/include/photos.php +++ b/include/photos.php @@ -333,10 +333,17 @@ function photo_upload($channel, $observer, $args) { $lat = $lon = null; - if($exif && $exif['GPS']) { - if(feature_enabled($channel_id,'photo_location')) { - $lat = getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']); - $lon = getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']); + if($exif && feature_enabled($channel_id,'photo_location')) { + $gps = null; + if(array_key_exists('GPS',$exif)) { + $gps = $exif['GPS']; + } + elseif(array_key_exists('GPSLatitude',$exif)) { + $gps = $exif; + } + if($gps) { + $lat = getGps($gps['GPSLatitude'], $gps['GPSLatitudeRef']); + $lon = getGps($gps['GPSLongitude'], $gps['GPSLongitudeRef']); } } |