Skip to content

Commit

Permalink
try to correct issue nuovo#20
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarbonneaux committed Nov 15, 2015
1 parent 2f4e3c1 commit 095bea5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 095bea5

Please sign in to comment.