From 6c6c5975dc0c5af5bade49cbb4936ddd5b3d7613 Mon Sep 17 00:00:00 2001 From: kurund Date: Fri, 19 Dec 2014 02:25:57 +0530 Subject: [PATCH] CRM-15180, added support in case view ---------------------------------------- * CRM-15180: Using the taglist style of the "contact" page for the "new contact" page https://issues.civicrm.org/jira/browse/CRM-15180 --- CRM/Case/Form/CaseView.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Case/Form/CaseView.php b/CRM/Case/Form/CaseView.php index 7a2ca49d0b..094579a20c 100644 --- a/CRM/Case/Form/CaseView.php +++ b/CRM/Case/Form/CaseView.php @@ -391,8 +391,8 @@ class CRM_Case_Form_CaseView extends CRM_Core_Form { $this->assign('hookCaseSummary', $hookCaseSummary); } - - $allTags = CRM_Core_BAO_Tag::getTags('civicrm_case'); + CRM_Core_BAO_Tag::getTags('civicrm_case', $allTags, NULL, + '  ', TRUE); if (!empty($allTags)) { $this->add('select', 'case_tag', ts('Tags'), $allTags, FALSE, -- 2.25.1