From 7106398e1e2e97c10f70970f7cdfa4217c77aba1 Mon Sep 17 00:00:00 2001 From: Kurund Jalmi Date: Tue, 28 Sep 2021 15:07:44 +0100 Subject: [PATCH] typo fixes --- CRM/Mailing/Event/BAO/Unsubscribe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Mailing/Event/BAO/Unsubscribe.php b/CRM/Mailing/Event/BAO/Unsubscribe.php index 73f61f549c..ab41f47712 100644 --- a/CRM/Mailing/Event/BAO/Unsubscribe.php +++ b/CRM/Mailing/Event/BAO/Unsubscribe.php @@ -135,7 +135,7 @@ WHERE email = %2 if (in_array($mailing_type, ['experiment', 'winner'])) { // The mailing belongs to an AB test. // See if we can find an AB test where this is variant B. - $mailing_id_a = CRM_Core_DAO::getFieldValue('CRM_Mailing_DAO_MailingAB', mailing_id, 'mailing_id_a', 'mailing_id_b'); + $mailing_id_a = CRM_Core_DAO::getFieldValue('CRM_Mailing_DAO_MailingAB', $mailing_id, 'mailing_id_a', 'mailing_id_b'); if (!empty($mailing_id_a)) { // OK, we were given mailing B and we looked up variant A which is the relevant one. $relevant_mailing_id = $mailing_id_a; -- 2.25.1