diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-05-29 16:46:54 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-05-29 16:46:54 +0200 |
commit | c9df18ed8c62f2d6eb454b2554e6bb40382f3701 (patch) | |
tree | 76d04a4adc7569cd39da3adb59060331c20c91f0 /apps | |
parent | 51aa84e70adaa83ee195c4a187c490b073d16a00 (diff) | |
download | nextcloud-server-c9df18ed8c62f2d6eb454b2554e6bb40382f3701.tar.gz nextcloud-server-c9df18ed8c62f2d6eb454b2554e6bb40382f3701.zip |
Forgot a break.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/ajax/saveproperty.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/contacts/ajax/saveproperty.php b/apps/contacts/ajax/saveproperty.php index e4537cd9793..6509ac21f28 100644 --- a/apps/contacts/ajax/saveproperty.php +++ b/apps/contacts/ajax/saveproperty.php @@ -96,14 +96,9 @@ switch($element) { //$value = getOtherValue(); } break; - //case 'CATEGORIES': - /* multi autocomplete triggers an save with empty value - if (!$value) { - $value = $vcard->getAsString('CATEGORIES'); - } - break;*/ case 'NOTE': $value = str_replace('\n', '\\n', $value); + break; case 'EMAIL': $value = strtolower($value); break; |