aboutsummaryrefslogtreecommitdiffstats
path: root/include/photo/photo_driver.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-03-14 11:37:24 +0100
committerMario Vavti <mario@mariovavti.com>2018-03-14 11:37:24 +0100
commit461e86423a5378d35554115f2cf6fd244692f213 (patch)
tree95b70c696045d2d6d1907c9c123d9ec07f378e3e /include/photo/photo_driver.php
parentf70413a031bac53563751c749419d64bc2b04d9b (diff)
parenta0cbed80f3e488ab3592094f88b4587c68738737 (diff)
downloadvolse-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/photo/photo_driver.php')
-rw-r--r--include/photo/photo_driver.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php
index 6af753195..00284a288 100644
--- a/include/photo/photo_driver.php
+++ b/include/photo/photo_driver.php
@@ -289,12 +289,12 @@ abstract class photo_driver {
return false;
}
- $ort = $exif['IFD0']['Orientation'];
+ $ort = ((array_key_exists('IFD0',$exif)) ? $exif['IFD0']['Orientation'] : $exif['Orientation']);
if(! $ort) {
return false;
}
-
+
switch($ort) {
case 1: // nothing
break;