diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-01-31 19:26:26 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-01-31 19:30:56 +0100 |
commit | 3f1486534f687fdcad219b97072ed71a2998de87 (patch) | |
tree | 62137ae8c829291bbc9daf137ad4f813724565ca /apps/contacts/lib/app.php | |
parent | db1f77e4f51b1172aabe12defdd8228e9dd3b93b (diff) | |
download | nextcloud-server-3f1486534f687fdcad219b97072ed71a2998de87.tar.gz nextcloud-server-3f1486534f687fdcad219b97072ed71a2998de87.zip |
- Fixed http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-93
Property was added multiple times.
- Fixed http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-8
"Missing "N" field: Contacts app not compatible with vcard 3.0 format"
- Almost sure I've fixed http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-27
"Full name in Contacts app doesn't sync to iOS 5 contacts" because it is caused by oc-8
Diffstat (limited to 'apps/contacts/lib/app.php')
-rw-r--r-- | apps/contacts/lib/app.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/contacts/lib/app.php b/apps/contacts/lib/app.php index 39df497043b..580cc72d5eb 100644 --- a/apps/contacts/lib/app.php +++ b/apps/contacts/lib/app.php @@ -85,11 +85,6 @@ class OC_Contacts_App{ break; } } - // FIXME: I'm not sure this should throw a JSON error as it might just be used to check for dupes. /Tanghus. - if(is_null($line)){ - OC_JSON::error(array('data' => array( 'message' => self::$l10n->t('Information about vCard is incorrect. Please reload the page.')))); - exit(); - } return $line; } |