From: Bradley Taylor Date: Mon, 19 Sep 2022 15:15:07 +0000 (+0100) Subject: Remove stray character in income report X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e1b1c31cbbcfe1aecf32d76d463ac11cd93ea413;p=civicrm-core.git Remove stray character in income report --- diff --git a/CRM/Report/Form/Event/Income.php b/CRM/Report/Form/Event/Income.php index 24c6cead37..1d559b0a66 100644 --- a/CRM/Report/Form/Event/Income.php +++ b/CRM/Report/Form/Event/Income.php @@ -73,7 +73,7 @@ class CRM_Report_Form_Event_Income extends CRM_Report_Form { $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);