From 7218b8a8b60dcf866579b00e1f4a979d8062c87f Mon Sep 17 00:00:00 2001 From: francescbassas Date: Tue, 11 Oct 2016 19:12:19 +0200 Subject: [PATCH] CRM-19482 Localization for participant status counted and no counted links --- CRM/Event/Page/ManageEvent.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Event/Page/ManageEvent.php b/CRM/Event/Page/ManageEvent.php index a661d3ad6b..65c0a3f2ef 100644 --- a/CRM/Event/Page/ManageEvent.php +++ b/CRM/Event/Page/ManageEvent.php @@ -385,8 +385,8 @@ ORDER BY start_date desc $manageEvent['tab'] = self::tabs($enableCart); $this->assign('rows', $manageEvent); - $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1'); - $statusTypesPending = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 0'); + $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1', 'label'); + $statusTypesPending = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 0', 'label'); $findParticipants['statusCounted'] = implode(', ', array_values($statusTypes)); $findParticipants['statusNotCounted'] = implode(', ', array_values($statusTypesPending)); $this->assign('findParticipants', $findParticipants); -- 2.25.1