]> git.mxchange.org Git - friendica.git/commitdiff
Fix missing variable
authorArt4 <art4@wlabs.de>
Thu, 9 Jan 2025 15:24:13 +0000 (15:24 +0000)
committerArt4 <art4@wlabs.de>
Thu, 9 Jan 2025 15:24:13 +0000 (15:24 +0000)
src/Model/Item.php

index 3816074d9efe6dece157ac17341c7074d1ed7041..acf99b4f3d4f5151912d7d5a63bf496a948cce2f 100644 (file)
@@ -1345,10 +1345,10 @@ class Item
 
                Logger::notice('created item', ['post-id' => $post_user_id, 'uid' => $item['uid'], 'network' => $item['network'], 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
 
-               return self::handleCreatedItem($orig_item, $post_user_id, $uid, $notify, $copy_permissions, $parent_origin, $priority, $notify_type, $inserted);
+               return self::handleCreatedItem($orig_item, $post_user_id, $uid, $notify, $copy_permissions, $parent_origin, $priority, $notify_type, $inserted, $source);
        }
 
-       private static function handleCreatedItem(array $orig_item, int $post_user_id, int $uid, int $notify, bool $copy_permissions, $parent_origin, int $priority, string $notify_type, bool $inserted): int
+       private static function handleCreatedItem(array $orig_item, int $post_user_id, int $uid, int $notify, bool $copy_permissions, $parent_origin, int $priority, string $notify_type, bool $inserted, $source): int
        {
                $posted_item = Post::selectFirst(self::ITEM_FIELDLIST, ['post-user-id' => $post_user_id]);
                if (!DBA::isResult($posted_item)) {
@@ -4270,7 +4270,7 @@ class Item
        /**
         * Fetch the uri-id of a quoted post by searching for data in the body or attached media
         *
-        * @param string $body   The body of the 
+        * @param string $body   The body of the
         * @param int    $uid    The id of the user
         * @return integer
         */