Strip slashes from commas and semi-colons.

This commit is contained in:
Thomas Tanghus 2012-08-19 16:32:32 +02:00
parent a4e840f4f1
commit 4946e23bdc

View file

@ -552,6 +552,9 @@ class OC_Contacts_VCard{
}
}
}
if(is_string($value)) {
$value = strtr($value, array('\,' => ',', '\;' => ';'));
}
$temp = array(
'name' => $property->name,
'value' => $value,