mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
fix: notes containing commas where not working when coming via syncML
This commit is contained in:
parent
21a7ecd969
commit
e3203f7cd9
@ -572,6 +572,10 @@ class vcaladdressbook extends bocontacts
|
||||
$contact[$fieldName] = $cat_id;
|
||||
}
|
||||
break;
|
||||
case 'note':
|
||||
// note may contain ','s but maybe this needs to be fixed in vcard parser...
|
||||
$contact[$fieldName] = trim($vcardValues[$vcardKey]['value']);
|
||||
break;
|
||||
default:
|
||||
$contact[$fieldName] = trim($vcardValues[$vcardKey]['values'][$fieldKey]);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user