From b2a78e839ae79832090608ee024759f802234af9 Mon Sep 17 00:00:00 2001 From: Michael J Rubinsky Date: Sun, 10 Jan 2016 22:44:13 -0500 Subject: [PATCH] Bug: 13800 Fix splitting tags for EAS contacts. --- turba/lib/Driver.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turba/lib/Driver.php b/turba/lib/Driver.php index 8921934171c..722307ace6d 100644 --- a/turba/lib/Driver.php +++ b/turba/lib/Driver.php @@ -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);