1
1
Fork 0

Improve PR 5984: better check for remote users as well

This commit is contained in:
Michael 2018-10-21 21:56:46 +00:00
commit 8e11f055b1
2 changed files with 2 additions and 2 deletions

View file

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