From c7f46d6ccedf32545cad0bf2c76cfd866475d8f0 Mon Sep 17 00:00:00 2001 From: Florian Dehn Date: Thu, 14 May 2015 09:28:04 +0200 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 2691c448..46cb2c29 100644 --- a/src/Intervention/Image/Commands/IptcCommand.php +++ b/src/Intervention/Image/Commands/IptcCommand.php @@ -47,7 +47,7 @@ class IptcCommand extends AbstractCommand $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['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; } }