From 75e38c1ed06fc915b5a7f4048faa0b27cd0c92d0 Mon Sep 17 00:00:00 2001 From: Matthew Wire Date: Fri, 1 Jun 2018 16:35:01 +0100 Subject: [PATCH] Fix typo in CRM_Grant_Form_Task that prevents retrieving session key from URL --- CRM/Grant/Form/Task.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Grant/Form/Task.php b/CRM/Grant/Form/Task.php index 51f505428e..0de6443815 100644 --- a/CRM/Grant/Form/Task.php +++ b/CRM/Grant/Form/Task.php @@ -127,7 +127,7 @@ class CRM_Grant_Form_Task extends CRM_Core_Form { $form->_grantIds = $form->_componentIds = $ids; //set the context for redirection for any task actions - $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $this); + $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form); $urlParams = 'force=1'; if (CRM_Utils_Rule::qfKey($qfKey)) { $urlParams .= "&qfKey=$qfKey"; -- 2.25.1