Skip to content

Commit

Permalink
Merge pull request #24558 from braders/include-report-status-typo
Browse files Browse the repository at this point in the history
Remove stray character in income report
  • Loading branch information
eileenmcnaughton authored Sep 19, 2022
2 parents 76fd5a1 + e1b1c31 commit f1bb8a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Report/Form/Event/Income.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function buildEventReport($eventIDs) {
$eventSummary[$eventDAO->event_id][ts('End Date')] = CRM_Utils_Date::customFormat($eventDAO->end_date);
$eventSummary[$eventDAO->event_id][ts('Event Type')] = $eventDAO->event_type;
$eventSummary[$eventDAO->event_id][ts('Event Income')] = CRM_Utils_Money::format($eventDAO->total, $eventDAO->currency);
$eventSummary[$eventDAO->event_id][ts('Registered Participant')] = "{$eventDAO->participant} ({" . implode(', ', $this->getActiveParticipantStatuses()) . ")";
$eventSummary[$eventDAO->event_id][ts('Registered Participant')] = "{$eventDAO->participant} (" . implode(', ', $this->getActiveParticipantStatuses()) . ")";
$currency[$eventDAO->event_id] = $eventDAO->currency;
}
$this->assign_by_ref('summary', $eventSummary);
Expand Down

0 comments on commit f1bb8a6

Please sign in to comment.