From 3c50d5b70f38e3b6420339e7875f7c98eca9079c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Wed, 26 Oct 2022 01:31:04 +0200 Subject: [PATCH] Changes: - made code more readable --- src/Object/Post.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Object/Post.php b/src/Object/Post.php index 7c3d739bcb..7467e4ffc7 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -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); }