]> git.mxchange.org Git - friendica.git/commitdiff
Remove vcard Edit link pointing to profiles for contacts
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 20 Apr 2017 01:58:33 +0000 (21:58 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 20 Apr 2017 01:58:33 +0000 (21:58 -0400)
include/identity.php

index 670337e0871b9c567d7e04fd301e3a505b124729..9e34e061c35d5fae2a49695b9de768bf9895ec08 100644 (file)
@@ -202,6 +202,9 @@ function profile_sidebar($profile, $block = 0) {
        $address = false;
 //             $pdesc = true;
 
+       // This function can also use contact information in $profile
+       $is_contact = x($profile, 'cid');
+
        if((! is_array($profile)) && (! count($profile)))
                return $o;
 
@@ -280,8 +283,10 @@ function profile_sidebar($profile, $block = 0) {
                $wallmessage_link = false;
        }
 
+       var_dump($profile);
+
        // show edit profile to yourself
-       if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
+       if (!$is_contact && $profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
                $profile['edit'] = array(App::get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
                $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
                                local_user());
@@ -310,7 +315,7 @@ function profile_sidebar($profile, $block = 0) {
 
                }
        }
-       if ($profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) {
+       if (!$is_contact && $profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) {
                $profile['edit'] = array(App::get_baseurl(). '/profiles/'.$profile['id'], t('Edit profile'),"", t('Edit profile'));
                $profile['menu'] = array(
                        'chg_photo' => t('Change profile photo'),