Skip to content
Snippets Groups Projects
Commit 4946e23b authored by Thomas Tanghus's avatar Thomas Tanghus
Browse files

Strip slashes from commas and semi-colons.

parent a4e840f4
No related branches found
No related tags found
No related merge requests found
......@@ -552,6 +552,9 @@ class OC_Contacts_VCard{
}
}
}
if(is_string($value)) {
$value = strtr($value, array('\,' => ',', '\;' => ';'));
}
$temp = array(
'name' => $property->name,
'value' => $value,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment