From f4d3199b24ee99c22da26558f36fc9b79cfa20b8 Mon Sep 17 00:00:00 2001 From: Florian Dehn Date: Wed, 24 Dec 2014 10:45:18 +0100 Subject: [PATCH] fixed typo --- src/Intervention/Image/Commands/IptcCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }