From eef4d65c981b096c10f94133d4487d2aa3fa2ff3 Mon Sep 17 00:00:00 2001 From: Patrick Figel Date: Tue, 14 May 2019 16:35:29 +0200 Subject: [PATCH] Fix event participants getting overwritten --- CRM/Event/Form/Participant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Event/Form/Participant.php b/CRM/Event/Form/Participant.php index d0426e4caa..f86fca2c27 100644 --- a/CRM/Event/Form/Participant.php +++ b/CRM/Event/Form/Participant.php @@ -258,7 +258,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment $this->_id = NULL; } else { - $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this); + $this->_id = CRM_Utils_Request::retrieve('id', 'Positive'); } if ($this->_id) { -- 2.25.1