aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Connedit.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Module/Connedit.php')
-rw-r--r--Zotlabs/Module/Connedit.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php
index aac42abb9..55113eb82 100644
--- a/Zotlabs/Module/Connedit.php
+++ b/Zotlabs/Module/Connedit.php
@@ -654,12 +654,9 @@ class Connedit extends \Zotlabs\Web\Controller {
}
$vc = get_abconfig(local_channel(),$contact['abook_xchan'],'system','vcard');
-logger('vc: ' . $vc);
$vctmp = (($vc) ? \Sabre\VObject\Reader::read($vc) : null);
- $vcard = (($vctmp) ? get_vcard_array($vctmp) : [] );
-
-logger('vcard: ' . print_r($vcard,true));
+ $vcard = (($vctmp) ? get_vcard_array($vctmp,$contact['abook_id']) : [] );
$tpl = get_markup_template("abook_edit.tpl");