From e089c7c823a016357baa62edb60f4da9e42ccdbb Mon Sep 17 00:00:00 2001 From: jitendrapurohit Date: Fri, 22 Jan 2016 11:48:23 +0530 Subject: [PATCH] CRM-17839 -- unable to edit custom data in tab if inline set already exists --- CRM/Custom/Form/CustomDataByType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Custom/Form/CustomDataByType.php b/CRM/Custom/Form/CustomDataByType.php index 6d8d46214b..82f27b6889 100644 --- a/CRM/Custom/Form/CustomDataByType.php +++ b/CRM/Custom/Form/CustomDataByType.php @@ -53,7 +53,7 @@ class CRM_Custom_Form_CustomDataByType extends CRM_Core_Form { if (!is_array($this->_subType) && strstr($this->_subType, CRM_Core_DAO::VALUE_SEPARATOR)) { $this->_subType = str_replace(CRM_Core_DAO::VALUE_SEPARATOR, ',', trim($this->_subType, CRM_Core_DAO::VALUE_SEPARATOR)); } - CRM_Custom_Form_CustomData::setGroupTree($this, $this->_subType, NULL, $this->_groupID); + CRM_Custom_Form_CustomData::setGroupTree($this, $this->_subType, $this->_groupID); $this->assign('suppressForm', TRUE); $this->controller->_generateQFKey = FALSE; -- 2.25.1