From 2c4084779b2f7925b4d7a724458a2dd1b16e7175 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 4 Aug 2023 10:48:29 +1200 Subject: [PATCH] Another e-notice fix --- CRM/Event/Form/ParticipantView.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CRM/Event/Form/ParticipantView.php b/CRM/Event/Form/ParticipantView.php index 22065995e1..03406163fb 100644 --- a/CRM/Event/Form/ParticipantView.php +++ b/CRM/Event/Form/ParticipantView.php @@ -199,9 +199,7 @@ class CRM_Event_Form_ParticipantView extends CRM_Core_Form { if (Civi::settings()->get('invoicing')) { $this->assign('totalTaxAmount', $totalTaxAmount); } - if ($participantCount) { - $this->assign('pricesetFieldsCount', $participantCount); - } + $this->assign('pricesetFieldsCount', $participantCount); $this->assign('displayName', $displayName); // omitting contactImage from title for now since the summary overlay css doesn't work outside of our crm-container $this->setTitle(ts('View Event Registration for') . ' ' . $displayName); -- 2.25.1