diff --git a/src/Intervention/Image/Commands/IptcCommand.php b/src/Intervention/Image/Commands/IptcCommand.php index b3c284ef..2691c448 100644 --- a/src/Intervention/Image/Commands/IptcCommand.php +++ b/src/Intervention/Image/Commands/IptcCommand.php @@ -45,7 +45,7 @@ class IptcCommand extends AbstractCommand $data['Headline'] = isset($iptc["2#105"][0]) ? $iptc["2#105"][0] : null; $data['Source'] = isset($iptc["2#110"][0]) ? $iptc["2#110"][0] : null; $data['PhotoSource'] = isset($iptc["2#115"][0]) ? $iptc["2#115"][0] : null; - $data['Copyright'] = isset($iptc["2#115"][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['CaptionWriter'] = isset($iptc["2#120"][0]) ? $iptc["2#122"][0] : null; }