From ba7e63eb614ddb4e7971e67d4854e5285c47abf0 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Mon, 5 Jun 2017 07:26:35 +1000 Subject: [PATCH] CRM-20604 FIx issue where getRegistrationContactID cannot be a protected class must be public --- 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..c9114de5df 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) { + public static function getRegistrationContactID($fields, $self, $isAdditional) { $contactID = NULL; if (!$isAdditional) { -- 2.25.1