Skip to content
Snippets Groups Projects
Unverified Commit 3f1184dd authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #22016 from demeritcowboy/histreport-entryfound

report#77 - Unused variable in contribute/history civireport
parents f982eb14 b2f2700e
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment