From e9567ca35d142aea5ff0f6befd014843194f0e14 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Thu, 12 Mar 2015 17:00:23 -0400 Subject: [PATCH] CRM-16096 - Fix separator character in contact_type selectValues --- CRM/Contact/BAO/ContactType.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Contact/BAO/ContactType.php b/CRM/Contact/BAO/ContactType.php index 77657dd27c..60f28d8d85 100644 --- a/CRM/Contact/BAO/ContactType.php +++ b/CRM/Contact/BAO/ContactType.php @@ -391,6 +391,7 @@ WHERE type.name IS NOT NULL $argString = $all ? 'CRM_CT_GSE_1' : 'CRM_CT_GSE_0'; $argString .= $isSeparator ? '_1' : '_0'; + $argString .= $separator; if (!array_key_exists($argString, $_cache)) { $cache = CRM_Utils_Cache::singleton(); $_cache[$argString] = $cache->get($argString); -- 2.25.1