From a44084786db5bcaac5b1b44de2a0e99a08086566 Mon Sep 17 00:00:00 2001 From: yashodha Date: Tue, 10 Oct 2017 18:41:45 +0530 Subject: [PATCH] CRM-21286 - expose active flag in UI for group --- CRM/Group/Form/Edit.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CRM/Group/Form/Edit.php b/CRM/Group/Form/Edit.php index 6886183eab..fb6e1e0e6d 100644 --- a/CRM/Group/Form/Edit.php +++ b/CRM/Group/Form/Edit.php @@ -175,7 +175,8 @@ class CRM_Group_Form_Edit extends CRM_Core_Form { if (CRM_Core_Permission::check('administer Multiple Organizations') && CRM_Core_Permission::isMultisiteEnabled()) { CRM_Contact_BAO_GroupOrganization::retrieve($this->_id, $defaults); } - } else { + } + else { $defaults['is_active'] = 1; } -- 2.25.1