Replace obsolete anonymity test with a slightly less obsolete one in Model\Item

- Address part of https://github.com/friendica/friendica/issues/8475#issuecomment-646457104
This commit is contained in:
Hypolite Petovan 2020-06-19 07:05:58 -04:00
parent 87f2efff4b
commit aafef02789
1 changed files with 1 additions and 4 deletions

View File

@ -3490,9 +3490,7 @@ class Item
*/
public static function getPlink($item)
{
$a = DI::app();
if ($a->user['nickname'] != "") {
if (local_user()) {
$ret = [
'href' => "display/" . $item['guid'],
'orig' => "display/" . $item['guid'],
@ -3504,7 +3502,6 @@ class Item
$ret["href"] = DI::baseUrl()->remove($item['plink']);
$ret["title"] = DI::l10n()->t('link to source');
}
} elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
$ret = [
'href' => $item['plink'],