From 3c6fb756f53d697e154f98dca99eb83ca43fa338 Mon Sep 17 00:00:00 2001 From: "Christopher J. Wells" Date: Tue, 23 May 2017 13:15:55 -0400 Subject: [PATCH] method cannot be a protected static when called from CRM/Event/Form/Registration/AdditionalParticipant.php --- CRM/Event/Form/Registration/Register.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Event/Form/Registration/Register.php b/CRM/Event/Form/Registration/Register.php index 82a726eb31..ea1669f1b2 100644 --- a/CRM/Event/Form/Registration/Register.php +++ b/CRM/Event/Form/Registration/Register.php @@ -88,7 +88,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { * * @return int|null */ - protected static function getRegistrationContactID($fields, $self, $isAdditional) { + static function getRegistrationContactID($fields, $self, $isAdditional) { $contactID = NULL; if (!$isAdditional) { -- 2.25.1