diff options
author | Mario <mario@mariovavti.com> | 2022-01-18 10:50:25 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-01-18 10:50:25 +0100 |
commit | c4b09f1a4f6274b0c96c7ed742f845bdba413171 (patch) | |
tree | 7d7a21215a2679ea2043dad9a8378f8ffc8221a3 /Zotlabs/Module | |
parent | 788c973c13ef7a66928bb8eb58e16ea46f1b56fd (diff) | |
download | volse-hubzilla-c4b09f1a4f6274b0c96c7ed742f845bdba413171.tar.gz volse-hubzilla-c4b09f1a4f6274b0c96c7ed742f845bdba413171.tar.bz2 volse-hubzilla-c4b09f1a4f6274b0c96c7ed742f845bdba413171.zip |
check for existence of vcard
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Profiles.php | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Zotlabs/Module/Profiles.php b/Zotlabs/Module/Profiles.php index fef20c954..325424378 100644 --- a/Zotlabs/Module/Profiles.php +++ b/Zotlabs/Module/Profiles.php @@ -733,7 +733,7 @@ class Profiles extends \Zotlabs\Web\Controller { '$profile_clone_link' => 'profiles/clone/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_clone"), '$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"), '$fields' => $fields, - // '$vcard' => $vcard, + //'$vcard' => $vcard, '$guid' => $r[0]['profile_guid'], '$banner' => t('Edit Profile Details'), '$submit' => t('Submit'), @@ -798,23 +798,23 @@ class Profiles extends \Zotlabs\Web\Controller { '$contact' => array('contact', t('Contact information and social networks'), $r[0]['contact']), '$channels' => array('channels', t('My other channels'), $r[0]['channels']), '$extra_fields' => $extra_fields, - '$comms' => t('Communications'), - '$tel_label' => t('Phone'), - '$email_label' => t('Email'), - '$impp_label' => t('Instant messenger'), - '$url_label' => t('Website'), - '$adr_label' => t('Address'), - '$note_label' => t('Note'), - '$mobile' => t('Mobile'), - '$home' => t('Home'), - '$work' => t('Work'), - '$other' => t('Other'), - '$add_card' => t('Add Contact'), - '$add_field' => t('Add Field'), - '$create' => t('Create'), - '$update' => t('Update'), - '$delete' => t('Delete'), - '$cancel' => t('Cancel'), + //'$comms' => t('Communications'), + //'$tel_label' => t('Phone'), + //'$email_label' => t('Email'), + //'$impp_label' => t('Instant messenger'), + //'$url_label' => t('Website'), + //'$adr_label' => t('Address'), + //'$note_label' => t('Note'), + //'$mobile' => t('Mobile'), + //'$home' => t('Home'), + //'$work' => t('Work'), + //'$other' => t('Other'), + //'$add_card' => t('Add Contact'), + //'$add_field' => t('Add Field'), + //'$create' => t('Create'), + //'$update' => t('Update'), + //'$delete' => t('Delete'), + //'$cancel' => t('Cancel'), '$show_presence' => $show_presence, '$suggestme' => $suggestme, |