From 59c97234f8bea182001438ecd8f58e7150869494 Mon Sep 17 00:00:00 2001 From: Philipp Date: Tue, 15 Nov 2022 20:15:25 +0100 Subject: [PATCH] PHP-CS and license .. --- src/Module/Item/Display.php | 4 ++-- src/Module/Item/Feed.php | 1 + src/Module/Update/Display.php | 3 +-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Module/Item/Display.php b/src/Module/Item/Display.php index ff7455696..42112a3e0 100644 --- a/src/Module/Item/Display.php +++ b/src/Module/Item/Display.php @@ -16,6 +16,7 @@ * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . + * */ namespace Friendica\Module\Item; @@ -321,8 +322,7 @@ class Display extends BaseModule $page = $this->page; if (Contact::exists([ - 'unsearchable' => true, - 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']] + 'unsearchable' => true, 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']] ])) { $page['htmlhead'] .= "\n"; } diff --git a/src/Module/Item/Feed.php b/src/Module/Item/Feed.php index c640a80ba..50447afba 100644 --- a/src/Module/Item/Feed.php +++ b/src/Module/Item/Feed.php @@ -16,6 +16,7 @@ * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . + * */ namespace Friendica\Module\Item; diff --git a/src/Module/Update/Display.php b/src/Module/Update/Display.php index 11e3a3eda..4b84cba7a 100644 --- a/src/Module/Update/Display.php +++ b/src/Module/Update/Display.php @@ -17,7 +17,6 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * See update_profile.php for documentation */ namespace Friendica\Module\Update; @@ -49,7 +48,7 @@ class Display extends DisplayModule $item = Post::selectFirst( ['uid', 'parent-uri-id', 'uri-id'], ['uri-id' => $uriId, 'uid' => [0, $profileUid]], - ['order' => ['uid' => true]] + ['order' => ['uid' => true]] ); if (empty($item)) {