From 81a24be4562e3652101c491868f0f2dd0715d350 Mon Sep 17 00:00:00 2001 From: monishdeb Date: Fri, 23 Oct 2015 16:53:34 +0530 Subject: [PATCH] CRM-17434 fix - Free event registration with 'skip confirmation' throws warning https://issues.civicrm.org/jira/browse/CRM-17434 --- 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 7dc007f0b9..319832792b 100644 --- a/CRM/Event/Form/Registration/Register.php +++ b/CRM/Event/Form/Registration/Register.php @@ -1172,7 +1172,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { * Form values. * @param int $contactID */ - public function processRegistration($params, $contactID = NULL) { + public static function processRegistration($params, $contactID = NULL) { $session = CRM_Core_Session::singleton(); $this->_participantInfo = array(); -- 2.25.1