Only redirections to the same host do make sense

This commit is contained in:
Michael 2018-06-02 08:42:46 +00:00
parent 723b5ae803
commit 81c002370e
1 changed files with 5 additions and 2 deletions

View File

@ -1715,14 +1715,17 @@ class Contact extends BaseObject
*/
public static function magicLinkbyId($cid, $url = '')
{
// Direkt auf die URL verweisen, wenn die Host-Angaben unterschiedlich sind
$contact = dba::selectFirst('contact', ['network', 'url', 'uid'], ['id' => $cid]);
if ($contact['network'] != NETWORK_DFRN) {
return ($url != '') ? $url : $contact['url'];
}
// Only redirections to the same host do make sense
if (($url != '') && (parse_url($url, PHP_URL_HOST) != parse_url($contact['url'], PHP_URL_HOST))) {
return $url;
}
if ($contact['uid'] != 0) {
return self::magicLink($contact['url'], $url);
}