From 095bea5436b4926b7115b8d6ed76576e8facdb0f Mon Sep 17 00:00:00 2001 From: Mathieu CARBONNEAUX Date: Sun, 15 Nov 2015 21:24:08 +0100 Subject: [PATCH] try to correct issue https://github.com/nuovo/vCard-parser/issues/20 --- vCard.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vCard.php b/vCard.php index 737f235..a2a99f0 100644 --- a/vCard.php +++ b/vCard.php @@ -604,7 +604,8 @@ private static function ParseParameters($Key, array $RawParams = null) $Parameters = array(); foreach ($RawParams as $Item) { - $Parameters[] = explode('=', strtolower($Item)); + // try to correct issue https://github.com/nuovo/vCard-parser/issues/20 + $Parameters[] = explode('=', strtolower($Item),2); } $Type = array();