]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove my FIXME comments when I've fixed it :-P
authorThomas Tanghus <thomas@tanghus.net>
Tue, 21 Feb 2012 09:11:26 +0000 (10:11 +0100)
committerThomas Tanghus <thomas@tanghus.net>
Tue, 21 Feb 2012 22:22:06 +0000 (23:22 +0100)
apps/contacts/ajax/saveproperty.php

index 0c9e0cc7836aeeaa316187edf5210595b410a704..6f8366243fe59377fe7dfce0be076102ee9b8f1c 100644 (file)
@@ -51,7 +51,7 @@ $checksum = isset($_POST['checksum'])?$_POST['checksum']:null;
 //     }
 // }
 
-if(is_array($value)){ // FIXME: How to strip_tags for compound values?
+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!
        $value = OC_VObject::escapeSemicolons($value);