]> git.mxchange.org Git - friendica.git/commitdiff
Changes:
authorRoland Häder <roland@mxchange.org>
Tue, 25 Oct 2022 23:31:04 +0000 (01:31 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 25 Oct 2022 23:31:34 +0000 (01:31 +0200)
- made code more readable

src/Object/Post.php

index 7c3d739bcbb729b8394e2451e0a3998793c6965b..7467e4ffc753dbf47aa3a908b86ac85ddaa1fb0e 100644 (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);
                                        }