diff options
Diffstat (limited to 'exif.class.php')
-rw-r--r-- | exif.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exif.class.php b/exif.class.php index 92c18fc..86185af 100644 --- a/exif.class.php +++ b/exif.class.php @@ -110,7 +110,7 @@ Class Exif { $info = array(); foreach ($arTagNames as $tagName) { if ($tagName['section'] == "iptc") { - $info[$tagName['section'] .'_'. $tagName['tag']] = $arSmallIPTC[$tagName['tag']]; + $info[$tagName['section'] .'_'. $tagName['tag']] = utf8_encode($arSmallIPTC[$tagName['tag']]); } } return $info; @@ -182,4 +182,4 @@ Class Exif { "2#000" => "record_version" ); } -}
\ No newline at end of file +} |