From: Web Access Date: Fri, 10 Apr 2015 13:26:36 +0000 (+0530) Subject: Fix for CRM-16264 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c3d2bf84c6cd14ef48f719df9c323e04daa874ab;p=civicrm-core.git Fix for CRM-16264 --- diff --git a/CRM/Contact/Form/Edit/TagsAndGroups.php b/CRM/Contact/Form/Edit/TagsAndGroups.php index a3d15a7a7f..944092077b 100644 --- a/CRM/Contact/Form/Edit/TagsAndGroups.php +++ b/CRM/Contact/Form/Edit/TagsAndGroups.php @@ -206,7 +206,7 @@ class CRM_Contact_Form_Edit_TagsAndGroups { 'id' => "tag_{$tagID}", ); - $elements[$tagID] = $form->createElement('checkbox', $tagID, '', '', $tagAttribute); + $elements[$tagID] = $form->createElement('checkbox', $tagID, '', $varValue['name'], $tagAttribute); if (array_key_exists('children', $varValue)) { self::climbtree($form, $varValue['children'], $elements);