Merge pull request #8344 from MrPetovan/bug/8339-remote-follow-local-profile

Only show remote follow button for local profiles
2022.09-rc
Philipp 2020-02-28 07:36:31 +01:00 zatwierdzone przez GitHub
commit 79803a6546
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -330,7 +330,8 @@ class Profile
if (!$local_user_is_self && $show_connect) { if (!$local_user_is_self && $show_connect) {
if (!$visitor_is_authenticated) { if (!$visitor_is_authenticated) {
if (!empty($profile['nickname'])) { // Remote follow is only available for local profiles
if (!empty($profile['nickname']) && strpos($profile_url, DI::baseUrl()->get()) === 0) {
$follow_link = 'remote_follow/' . $profile['nickname']; $follow_link = 'remote_follow/' . $profile['nickname'];
} }
} elseif ($profile_is_native) { } elseif ($profile_is_native) {