Skip to content

Commit

Permalink
fix displayValue signature for Civi 5.67
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaphoneJon committed Nov 6, 2023
1 parent 7df8887 commit 9412ebe
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 9412ebe

Please sign in to comment.