Strip slashes from commas and semi-colons.
This commit is contained in:
parent
a4e840f4f1
commit
4946e23bdc
1 changed files with 3 additions and 0 deletions
|
@ -552,6 +552,9 @@ class OC_Contacts_VCard{
|
|||
}
|
||||
}
|
||||
}
|
||||
if(is_string($value)) {
|
||||
$value = strtr($value, array('\,' => ',', '\;' => ';'));
|
||||
}
|
||||
$temp = array(
|
||||
'name' => $property->name,
|
||||
'value' => $value,
|
||||
|
|
Loading…
Reference in a new issue