summaryrefslogtreecommitdiffstats
path: root/apps/contacts/ajax/addcard.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/addcard.php
parenteae3e134ff9005e50ea4e611b2c2daba94ad49ea (diff)
downloadnextcloud-server-237ba65a20edfbd346405e03583a96808602a2ca.tar.gz
nextcloud-server-237ba65a20edfbd346405e03583a96808602a2ca.zip
Localizin strings and adding error checking.
Diffstat (limited to 'apps/contacts/ajax/addcard.php')
-rw-r--r--apps/contacts/ajax/addcard.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/contacts/ajax/addcard.php b/apps/contacts/ajax/addcard.php
index 9d9a99de33c..7e47659d23b 100644
--- a/apps/contacts/ajax/addcard.php
+++ b/apps/contacts/ajax/addcard.php
@@ -26,6 +26,7 @@ require_once('../../../lib/base.php');
// Check if we are a user
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('contacts');
+$l=new OC_L10N('contacts');
$aid = $_POST['id'];
$addressbook = OC_Contacts_App::getAddressbook( $aid );
@@ -74,5 +75,11 @@ foreach( $add as $propname){
}
}
$id = OC_Contacts_VCard::add($aid,$vcard->serialize());
+if(!$id) {
+ OC_JSON::error(array('data' => array('message' => $l->t('There was an error adding the contact.'))));
+ OC_Log::write('contacts','ajax/addcard.php: Recieved non-positive ID on adding card: '.$name, OC_Log::ERROR);
+ exit();
+}
+// NOTE: Why is this in OC_Contacts_App?
OC_Contacts_App::renderDetails($id, $vcard);