diff --git a/CRM/Report/Form/Contribute/History.php b/CRM/Report/Form/Contribute/History.php index 3a85c348b79eca6d28d8e32e60d40ffc0fe3d7b8..76b798f74118172742de6bbe9a9f07339e3a4f46 100644 --- a/CRM/Report/Form/Contribute/History.php +++ b/CRM/Report/Form/Contribute/History.php @@ -839,12 +839,10 @@ class CRM_Report_Form_Contribute_History extends CRM_Report_Form { if (!empty($row['civicrm_financial_trxn_card_type_id'])) { $rows[$rowNum]['civicrm_financial_trxn_card_type_id'] = $this->getLabels($row['civicrm_financial_trxn_card_type_id'], 'CRM_Financial_DAO_FinancialTrxn', 'card_type_id'); - $entryFound = TRUE; } - $entryFound = $this->alterDisplayContactFields($row, $rows, $rowNum, NULL, NULL) ? TRUE : $entryFound; - $entryFound = $this->alterDisplayAddressFields($row, $rows, $rowNum, NULL, NULL) ? TRUE : $entryFound; - + $this->alterDisplayContactFields($row, $rows, $rowNum, NULL, NULL); + $this->alterDisplayAddressFields($row, $rows, $rowNum, NULL, NULL); } }