Skip to content

Commit

Permalink
Merge pull request #52 from ggoffy/master
Browse files Browse the repository at this point in the history
 - fixed bug in extract exif
  • Loading branch information
ggoffy authored May 23, 2020
2 parents 92c38da + d0fb65b commit e301a09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion class/ImagesHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public function exifExtractTags($exifs, $exif_tags)
{
$ret = '';

if (is_array($exifs)) {
if (is_object($exifs) || is_array($exifs)) {
foreach ($exifs as $key => $value) {
if (in_array($key, $exif_tags)) {
if (is_array($value)) {
Expand Down
1 change: 1 addition & 0 deletions docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- fixed perm for album list in image editor (lupin/goffy)
- fixed perm bug for moving image from one to another album (lupin/goffy)
- fixed bug in nested sorting (lupin/goffy)
- fixed bug in extract exif (lupin/goffy)

<h5>1.14 RC1</h5> [2019/11/09]
<hr>
Expand Down

0 comments on commit e301a09

Please sign in to comment.