From 65fb01274914236e37e883ff095514696c6e971a Mon Sep 17 00:00:00 2001 From: francescbassas Date: Mon, 13 Feb 2017 16:16:42 +0100 Subject: [PATCH] CRM-20013 Localization for participant status on Event Income Report (Summary) --- CRM/Report/Form/Event/Summary.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Report/Form/Event/Summary.php b/CRM/Report/Form/Event/Summary.php index 9254f8bdca..e4c8572103 100644 --- a/CRM/Report/Form/Event/Summary.php +++ b/CRM/Report/Form/Event/Summary.php @@ -262,8 +262,8 @@ class CRM_Report_Form_Event_Summary extends CRM_Report_Form_Event { } } - $statusType1 = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1'); - $statusType2 = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 0'); + $statusType1 = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1', 'label'); + $statusType2 = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 0', 'label'); //make column header for participant status Registered/Attended $type1_header = implode('/', $statusType1); -- 2.25.1