From 61e912dafc280c3d090aaedc58c1f7c0f9b9ea75 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Sat, 24 Jul 2021 13:00:10 +1200 Subject: [PATCH] Fix spelling --- CRM/Event/Page/ParticipantListing.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Event/Page/ParticipantListing.php b/CRM/Event/Page/ParticipantListing.php index 0ea5de7ae6..23ec405645 100644 --- a/CRM/Event/Page/ParticipantListing.php +++ b/CRM/Event/Page/ParticipantListing.php @@ -27,7 +27,7 @@ class CRM_Event_Page_ParticipantListing extends CRM_Core_Page { public function preProcess() { $this->_id = CRM_Utils_Request::retrieve('id', 'Integer', $this, TRUE); - // ensure that there is a particpant type for this + // ensure that there is a participant type for this $this->_participantListingID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_id, 'participant_listing_id' @@ -75,7 +75,7 @@ class CRM_Event_Page_ParticipantListing extends CRM_Core_Page { ) . '.php'; $error = include_once $classFile; if ($error == FALSE) { - CRM_Core_Error::statusBounce(ts('Participant listing code file: %1 does not exist. Please verify your custom particpant listing settings in CiviCRM administrative panel.', [1 => $classFile])); + CRM_Core_Error::statusBounce(ts('Participant listing code file: %1 does not exist. Please verify your custom participant listing settings in CiviCRM administrative panel.', [1 => $classFile])); } $participantListingClass = new $className(); -- 2.25.1