mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
* CardDAV/Addressbook: fix missing wrapping of notes field
by disabling all old special handling for vCard version 3.0
This commit is contained in:
parent
9b993e5484
commit
8c05d047ea
@ -449,7 +449,7 @@ class addressbook_vcal extends addressbook_bo
|
||||
{
|
||||
$value = Api\Translation::convert(trim($value), $sysCharSet, $_charset);
|
||||
$values[] = $value;
|
||||
if (preg_match('/[^\x20-\x7F]/', $value))
|
||||
if ($this->version == '2.1' && preg_match('/[^\x20-\x7F]/', $value))
|
||||
{
|
||||
if ($extra_charset_attribute || $this->productName == 'kde')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user