From fd94ce6ee16aefa660850056e1b25c45a4e74eef Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Sun, 16 Jul 2023 11:26:18 +1200 Subject: [PATCH] Remove use of subName property --- CRM/Custom/Form/CustomDataByType.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CRM/Custom/Form/CustomDataByType.php b/CRM/Custom/Form/CustomDataByType.php index 268534479a..45cdef25d2 100644 --- a/CRM/Custom/Form/CustomDataByType.php +++ b/CRM/Custom/Form/CustomDataByType.php @@ -34,7 +34,6 @@ class CRM_Custom_Form_CustomDataByType extends CRM_Core_Form { $this->_type = $this->_cdType = CRM_Utils_Request::retrieve('type', 'String', CRM_Core_DAO::$_nullObject, TRUE); $subType = CRM_Utils_Request::retrieve('subType', 'String'); - $this->_subName = CRM_Utils_Request::retrieve('subName', 'String'); $this->_groupCount = CRM_Utils_Request::retrieve('cgcount', 'Positive'); $this->_entityId = CRM_Utils_Request::retrieve('entityID', 'Positive'); $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive'); @@ -64,7 +63,7 @@ class CRM_Custom_Form_CustomDataByType extends CRM_Core_Form { $form->_entityId, $groupID, $subType, - $form->_subName, + CRM_Utils_Request::retrieve('subName', 'String'), TRUE, $onlySubType, FALSE, -- 2.25.1