From 21bd2a839676ecb3254de3bdd2019718b0e1d2d0 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 7 Oct 2022 07:57:20 +0000 Subject: [PATCH] More whitespace --- src/Model/Item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/Item.php b/src/Model/Item.php index 9253a282e..f6c990bb4 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -1930,7 +1930,7 @@ class Item { $latin = ''; $non_latin = ''; - for ($i = 0; $i < mb_strlen($body); $i++) { + for ($i = 0; $i < mb_strlen($body); $i++) { $character = mb_substr($body, $i, 1); $ord = mb_ord($character); @@ -3669,7 +3669,7 @@ class Item $shared = BBCode::fetchShareAttributes($item['body']); if (empty($shared['link']) && empty($shared['message_id'])) { return $item['body']; - } + } $id = self::fetchByLink($shared['link'] ?: $shared['message_id']); Logger::debug('Fetched shared post', ['uri-id' => $item['uri-id'], 'id' => $id, 'author' => $shared['profile'], 'url' => $shared['link'], 'guid' => $shared['guid'], 'uri' => $shared['message_id'], 'callstack' => System::callstack()]);