From: Bart Visscher Date: Tue, 6 Dec 2011 21:32:16 +0000 (+0100) Subject: Contacts: Fix postname var spelling X-Git-Tag: v3.0~81^2~10 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=36abf22a488b87096897a8748bbd2917321061c4;p=nextcloud-server.git Contacts: Fix postname var spelling --- diff --git a/apps/contacts/ajax/addproperty.php b/apps/contacts/ajax/addproperty.php index 1ca4a85515b..98877805b46 100644 --- a/apps/contacts/ajax/addproperty.php +++ b/apps/contacts/ajax/addproperty.php @@ -32,7 +32,7 @@ $vcard = OC_Contacts_App::getContactVCard( $id ); $name = $_POST['name']; $value = $_POST['value']; -$parameters = isset($_POST['parameteres'])?$_POST['parameters']:array(); +$parameters = isset($_POST['parameters'])?$_POST['parameters']:array(); $property = $vcard->addProperty($name, $value, $parameters);