Merge pull request #6256 from MrPetovan/bug/6255-hide-connect-remote
Add check for relationship with remote user for connect display
This commit is contained in:
commit
e2f1fd1efb
|
@ -99,7 +99,7 @@ class Profile
|
||||||
* load a lot of theme-specific content
|
* load a lot of theme-specific content
|
||||||
*
|
*
|
||||||
* @brief Loads a profile into the page sidebar.
|
* @brief Loads a profile into the page sidebar.
|
||||||
* @param object $a App
|
* @param App $a
|
||||||
* @param string $nickname string
|
* @param string $nickname string
|
||||||
* @param int $profile int
|
* @param int $profile int
|
||||||
* @param array $profiledata array
|
* @param array $profiledata array
|
||||||
|
@ -337,6 +337,11 @@ class Profile
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Is the remote user already connected to that user?
|
||||||
|
if ($connect && Contact::isFollower(remote_user(), $profile['uid'])) {
|
||||||
|
$connect = false;
|
||||||
|
}
|
||||||
|
|
||||||
if ($connect && ($profile['network'] != Protocol::DFRN) && !isset($profile['remoteconnect'])) {
|
if ($connect && ($profile['network'] != Protocol::DFRN) && !isset($profile['remoteconnect'])) {
|
||||||
$connect = false;
|
$connect = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue