1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-08 23:06:40 +02:00

fixed typo

This commit is contained in:
Florian Dehn
2015-05-14 09:28:04 +02:00
parent f4d3199b24
commit c7f46d6cce

View File

@@ -47,7 +47,7 @@ class IptcCommand extends AbstractCommand
$data['PhotoSource'] = isset($iptc["2#115"][0]) ? $iptc["2#115"][0] : null; $data['PhotoSource'] = isset($iptc["2#115"][0]) ? $iptc["2#115"][0] : null;
$data['Copyright'] = isset($iptc["2#116"][0]) ? $iptc["2#116"][0] : null; $data['Copyright'] = isset($iptc["2#116"][0]) ? $iptc["2#116"][0] : null;
$data['Caption'] = isset($iptc["2#120"][0]) ? $iptc["2#120"][0] : null; $data['Caption'] = isset($iptc["2#120"][0]) ? $iptc["2#120"][0] : null;
$data['CaptionWriter'] = isset($iptc["2#120"][0]) ? $iptc["2#122"][0] : null; $data['CaptionWriter'] = isset($iptc["2#122"][0]) ? $iptc["2#122"][0] : null;
} }
} }