mirror of
https://github.com/friendica/friendica
synced 2024-11-13 00:22:59 +00:00
Merge pull request #7262 from MrPetovan/bug/6410-normalize-message-button
Restore show_connect flag in Model\Profile::sidebar
This commit is contained in:
commit
41edbfd24a
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ class Profile
|
||||||
|| in_array($profile_contact['rel'] ?? 0, [Contact::FOLLOWER, Contact::FRIEND]);
|
|| in_array($profile_contact['rel'] ?? 0, [Contact::FOLLOWER, Contact::FRIEND]);
|
||||||
$visitor_base_path = self::getMyURL() ? preg_replace('=/profile/(.*)=ism', '', self::getMyURL()) : '';
|
$visitor_base_path = self::getMyURL() ? preg_replace('=/profile/(.*)=ism', '', self::getMyURL()) : '';
|
||||||
|
|
||||||
if (!$local_user_is_self) {
|
if (!$local_user_is_self && $show_connect) {
|
||||||
if (!$visitor_is_authenticated) {
|
if (!$visitor_is_authenticated) {
|
||||||
$follow_link = 'dfrn_request/' . $profile['nickname'];
|
$follow_link = 'dfrn_request/' . $profile['nickname'];
|
||||||
} elseif ($profile_is_native) {
|
} elseif ($profile_is_native) {
|
||||||
|
|
Loading…
Reference in a new issue