From a71c815d095c2e7407969fbb82d6ae04e505fdc1 Mon Sep 17 00:00:00 2001 From: Bradley Taylor Date: Tue, 11 Jan 2022 18:22:38 +0000 Subject: [PATCH] Fix broken function reference --- CRM/Utils/Mail/Incoming.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CRM/Utils/Mail/Incoming.php b/CRM/Utils/Mail/Incoming.php index cf2f7978b1..77b2c020cc 100644 --- a/CRM/Utils/Mail/Incoming.php +++ b/CRM/Utils/Mail/Incoming.php @@ -76,7 +76,7 @@ class CRM_Utils_Mail_Incoming { return NULL; } - return self::formatMailUnrecognisedPart($part); + return self::formatUnrecognisedPart($part); } /** @@ -110,7 +110,7 @@ class CRM_Utils_Mail_Incoming { return self::formatMailDeliveryStatus($part); } - return self::formatMailUnrecognisedPart($part); + return self::formatUnrecognisedPart($part); } /** @@ -452,7 +452,8 @@ class CRM_Utils_Mail_Incoming { $contactID = NULL; if ($dao) { $contactID = $dao->contact_id; - } else { + } + else { $dao = CRM_Contact_BAO_Contact::matchContactOnEmail($email, 'Organization'); if ($dao) { -- 2.25.1