aboutsummaryrefslogtreecommitdiffstats
path: root/apps/contacts/ajax/addproperty.php
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-01-11 20:07:15 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-01-11 20:07:15 +0100
commit237ba65a20edfbd346405e03583a96808602a2ca (patch)
treee101b9a441ac0e4704affabb3293da897c07c11d /apps/contacts/ajax/addproperty.php
parenteae3e134ff9005e50ea4e611b2c2daba94ad49ea (diff)
downloadnextcloud-server-237ba65a20edfbd346405e03583a96808602a2ca.tar.gz
nextcloud-server-237ba65a20edfbd346405e03583a96808602a2ca.zip
Localizin strings and adding error checking.
Diffstat (limited to 'apps/contacts/ajax/addproperty.php')
-rw-r--r--apps/contacts/ajax/addproperty.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/contacts/ajax/addproperty.php b/apps/contacts/ajax/addproperty.php
index 74f1c3d0e9e..6e3ba3566c0 100644
--- a/apps/contacts/ajax/addproperty.php
+++ b/apps/contacts/ajax/addproperty.php
@@ -61,7 +61,11 @@ foreach ($parameters as $key=>$element) {
}
}
-OC_Contacts_VCard::edit($id,$vcard->serialize());
+if(!OC_Contacts_VCard::edit($id,$vcard->serialize())) {
+ OC_JSON::error(array('data' => array('message' => $l->t('Error adding contact property.'))));
+ OC_Log::write('contacts','ajax/addproperty.php: Error updating contact property: '.$name, OC_Log::ERROR);
+ exit();
+}
$adr_types = OC_Contacts_App::getTypesOfProperty('ADR');
$phone_types = OC_Contacts_App::getTypesOfProperty('TEL');