diff options
Diffstat (limited to 'apps/contacts/ajax/saveproperty.php')
-rw-r--r-- | apps/contacts/ajax/saveproperty.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/contacts/ajax/saveproperty.php b/apps/contacts/ajax/saveproperty.php index 0769791ea36..95a7ac20193 100644 --- a/apps/contacts/ajax/saveproperty.php +++ b/apps/contacts/ajax/saveproperty.php @@ -63,11 +63,11 @@ if(!$checksum) { if(is_array($value)){ $value = array_map('strip_tags', $value); ksort($value); // NOTE: Important, otherwise the compound value will be set in the order the fields appear in the form! - if($name == 'CATEGORIES') { - $value = OC_Contacts_VCard::escapeDelimiters($value, ','); - } else { + //if($name == 'CATEGORIES') { + // $value = OC_Contacts_VCard::escapeDelimiters($value, ','); + //} else { $value = OC_Contacts_VCard::escapeDelimiters($value, ';'); - } + //} } else { $value = trim(strip_tags($value)); } |