kopia lustrzana https://github.com/friendica/friendica
Merge pull request #10763 from MrPetovan/task/10745-redir-private-posts
Limit /redir links to private postspull/10760/head
commit
1cf759d414
|
@ -177,7 +177,7 @@ function localize_item(&$item)
|
||||||
|
|
||||||
// add sparkle links to appropriate permalinks
|
// add sparkle links to appropriate permalinks
|
||||||
// Only create a redirection to a magic link when logged in
|
// Only create a redirection to a magic link when logged in
|
||||||
if (!empty($item['plink']) && Session::isAuthenticated()) {
|
if (!empty($item['plink']) && Session::isAuthenticated() && $item['private'] == Item::PRIVATE) {
|
||||||
$author = ['uid' => 0, 'id' => $item['author-id'],
|
$author = ['uid' => 0, 'id' => $item['author-id'],
|
||||||
'network' => $item['author-network'], 'url' => $item['author-link']];
|
'network' => $item['author-network'], 'url' => $item['author-link']];
|
||||||
$item['plink'] = Contact::magicLinkByContact($author, $item['plink']);
|
$item['plink'] = Contact::magicLinkByContact($author, $item['plink']);
|
||||||
|
|
Ładowanie…
Reference in New Issue