From a86cd93fb8afb0d3422869b2079025c190fbb278 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 20 Dec 2023 19:55:34 +0000 Subject: [PATCH] Fix class name capitalisation --- src/Model/Post/UserNotification.php | 2 +- src/Model/Tag.php | 2 +- src/Protocol/ActivityPub/Processor.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Model/Post/UserNotification.php b/src/Model/Post/UserNotification.php index 41c8b50312..4de95b59f8 100644 --- a/src/Model/Post/UserNotification.php +++ b/src/Model/Post/UserNotification.php @@ -605,7 +605,7 @@ class UserNotification if (empty($item['quote-uri-id']) || ($item['quote-uri-id'] == $item['uri-id'])) { return false; } - $condition = ['uri-id' => $item['quote-uri-id'], 'uid' => $item['uid'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => [item::GRAVITY_PARENT, Item::GRAVITY_COMMENT]]; + $condition = ['uri-id' => $item['quote-uri-id'], 'uid' => $item['uid'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT]]; return Post::exists($condition); } diff --git a/src/Model/Tag.php b/src/Model/Tag.php index 45824bbc1a..94ced6869d 100644 --- a/src/Model/Tag.php +++ b/src/Model/Tag.php @@ -338,7 +338,7 @@ class Tag /** * Store raw tags (not encapsulated in links) from the body * This function is needed in the intermediate phase. - * Later we can call item::setHashtags in advance to have all tags converted. + * Later we can call Item::setHashtags in advance to have all tags converted. * * @param integer $uriId URI-Id * @param string $body Body of the post diff --git a/src/Protocol/ActivityPub/Processor.php b/src/Protocol/ActivityPub/Processor.php index d2a522e81b..f42fa245d2 100644 --- a/src/Protocol/ActivityPub/Processor.php +++ b/src/Protocol/ActivityPub/Processor.php @@ -1118,7 +1118,7 @@ class Processor continue; } - if (($receiver != 0) && ($item['gravity'] == Item::GRAVITY_PARENT) && !in_array($item['post-reason'], [Item::PR_FOLLOWER, Item::PR_TAG, item::PR_TO, Item::PR_CC, Item::PR_AUDIENCE])) { + if (($receiver != 0) && ($item['gravity'] == Item::GRAVITY_PARENT) && !in_array($item['post-reason'], [Item::PR_FOLLOWER, Item::PR_TAG, Item::PR_TO, Item::PR_CC, Item::PR_AUDIENCE])) { if (!$item['isGroup']) { if ($item['post-reason'] == Item::PR_BCC) { Logger::info('Top level post via BCC from a non sharer, ignoring', ['uid' => $receiver, 'contact' => $item['contact-id'], 'url' => $item['uri']]);