From b94bde65ae8695a0bb01eea4d455b623e06bc418 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 6 May 2014 10:32:09 +0300 Subject: [PATCH] amp char --- application/Espo/Modules/Crm/Services/InboundEmail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Modules/Crm/Services/InboundEmail.php b/application/Espo/Modules/Crm/Services/InboundEmail.php index ee6c58ec34..de6e9aa695 100644 --- a/application/Espo/Modules/Crm/Services/InboundEmail.php +++ b/application/Espo/Modules/Crm/Services/InboundEmail.php @@ -203,7 +203,7 @@ class InboundEmail extends \Espo\Services\Record $body = $email->get('body'); if (!empty($body)) { foreach ($inlineIds as $cid => $attachmentId) { - $body = str_replace('cid:' . $cid, '?entryPoint=attachment&id=' . $attachmentId, $body); + $body = str_replace('cid:' . $cid, '?entryPoint=attachment&id=' . $attachmentId, $body); } $email->set('body', $body); }