Skip to content

Commit

Permalink
Merge pull request #572 from MegaphoneJon/567-compat
Browse files Browse the repository at this point in the history
fix displayValue signature for Civi 5.67
  • Loading branch information
eileenmcnaughton authored Nov 6, 2023
2 parents 7df8887 + 9412ebe commit 4b0a5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Extendedreport/Form/Report/ExtendedReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -2653,7 +2653,7 @@ public function alterCustomDataDisplay(&$rows): void {
$rows[$rowNum][$tableCol] = $val;
}
else {
$rows[$rowNum][$tableCol] = CRM_Core_BAO_CustomField::displayValue($val, $customField);
$rows[$rowNum][$tableCol] = CRM_Core_BAO_CustomField::displayValue($val, $customField['id']);
}

if (!empty($this->_drilldownReport)) {
Expand Down

0 comments on commit 4b0a5f1

Please sign in to comment.