From cb98c7f993b1cafdde695bda0d4966796d8e6b71 Mon Sep 17 00:00:00 2001 From: Jitendra Purohit Date: Mon, 22 Apr 2019 08:42:20 +0530 Subject: [PATCH] dev/core#888 - Backoffice participant transfer form does not populate contact reference field --- CRM/Event/Form/SelfSvcUpdate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Event/Form/SelfSvcUpdate.php b/CRM/Event/Form/SelfSvcUpdate.php index de7e8090fc23..f8aafbddb54f 100644 --- a/CRM/Event/Form/SelfSvcUpdate.php +++ b/CRM/Event/Form/SelfSvcUpdate.php @@ -283,7 +283,6 @@ public function postProcess() { * return @void */ public function transferParticipant($params) { - $isBackOfficeArg = $this->isBackoffice ? '&is_backoffice=1' : ''; CRM_Utils_System::redirect(CRM_Utils_System::url( 'civicrm/event/selfsvctransfer', [ @@ -291,6 +290,7 @@ public function transferParticipant($params) { 'action' => 'add', 'pid' => $this->_participant_id, 'cs' => $this->_userChecksum, + 'is_backoffice' => $this->isBackoffice, ] )); }