Skip to content

Commit

Permalink
Bug: 13800 Fix splitting tags for EAS contacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jan 11, 2016
1 parent c526f37 commit b2a78e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion turba/lib/Driver.php
Expand Up @@ -2730,7 +2730,8 @@ public function toASContact(Turba_Object $object, array $options = array())
}

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

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

0 comments on commit b2a78e8

Please sign in to comment.