Fix webmentions and microformats ("redir" only for logged in users)

This commit is contained in:
Michael 2018-10-21 20:23:08 +00:00
parent f14dae8d77
commit 9b387a226c
2 changed files with 9 additions and 2 deletions

View file

@ -353,7 +353,8 @@ function localize_item(&$item)
$author = ['uid' => 0, 'id' => $item['author-id'],
'network' => $item['author-network'], 'url' => $item['author-link']];
if (!empty($item['plink'])) {
// Only create a redirection to a magic link when logged in
if (!empty($item['plink']) && local_user()) {
$item['plink'] = Contact::magicLinkbyContact($author, $item['plink']);
}
}