From f8baa2bb14e5c6bade519cf1cd0c43411f88d4fa Mon Sep 17 00:00:00 2001 From: Brian Shaughnessy Date: Fri, 25 Jul 2014 10:27:17 -0400 Subject: [PATCH] CRM-15035 include/exclude - set tag defaults --- CRM/Contact/Form/Search/Custom/Group.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Contact/Form/Search/Custom/Group.php b/CRM/Contact/Form/Search/Custom/Group.php index 1de64dfa54..51fd1908f4 100644 --- a/CRM/Contact/Form/Search/Custom/Group.php +++ b/CRM/Contact/Form/Search/Custom/Group.php @@ -168,6 +168,9 @@ class CRM_Contact_Form_Search_Custom_Group $defaults['includeGroups'] = CRM_Utils_Array::value('includeGroups', $this->_formValues); $defaults['excludeGroups'] = CRM_Utils_Array::value('excludeGroups', $this->_formValues); + + $defaults['includeTags'] = CRM_Utils_Array::value('includeTags', $this->_formValues); + $defaults['excludeTags'] = CRM_Utils_Array::value('excludeTags', $this->_formValues); } return $defaults; -- 2.25.1