Skip to content

Commit

Permalink
Fix populating the EAS categories from Turba tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Sep 14, 2014
1 parent bf62dce commit 723ff24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turba/lib/Driver.php
Expand Up @@ -2689,7 +2689,7 @@ public function toASContact(Turba_Object $object, array $options = array())
}

/* Get tags. */
$message->categories = $object->getValue('__tags');
$message->categories = explode(',', $object->getValue('__tags'));

if (empty($this->fileas)) {
$message->fileas = Turba::formatName($object);
Expand Down

0 comments on commit 723ff24

Please sign in to comment.