- made code more readable
This commit is contained in:
Roland Häder 2022-10-26 01:31:04 +02:00
parent 2f1336339f
commit 3c50d5b70f
No known key found for this signature in database
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 3 additions and 3 deletions

View File

@ -1050,10 +1050,10 @@ class Post
$this->wall_to_wall = true;
$owner = [
'uid' => 0,
'id' => $this->getDataValue('owner-id'),
'uid' => 0,
'id' => $this->getDataValue('owner-id'),
'network' => $this->getDataValue('owner-network'),
'url' => $this->getDataValue('owner-link'),
'url' => $this->getDataValue('owner-link'),
];
$this->owner_url = Contact::magicLinkByContact($owner);
}