From 6415508f416cd130f125dd36f7efcc7fee920f6d Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Sat, 17 Sep 2022 16:47:51 +1200 Subject: [PATCH] Fix entity_id being saved to message field --- CRM/Contribute/Import/Parser/Contribution.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contribute/Import/Parser/Contribution.php b/CRM/Contribute/Import/Parser/Contribution.php index 0a4672ee8e..8c18601757 100644 --- a/CRM/Contribute/Import/Parser/Contribution.php +++ b/CRM/Contribute/Import/Parser/Contribution.php @@ -482,7 +482,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser { } // process pledge payment assoc w/ the contribution - $this->setImportStatus($rowNumber, $this->processPledgePayments($contributionID, $contributionParams) ? $this->getStatus(self::PLEDGE_PAYMENT) : $this->getStatus(self::VALID), $contributionID); + $this->setImportStatus($rowNumber, $this->processPledgePayments($contributionID, $contributionParams) ? $this->getStatus(self::PLEDGE_PAYMENT) : $this->getStatus(self::VALID), '', $contributionID); return; } -- 2.25.1