]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Post/Collection.php
Merge branch 'develop' into new_image_presentation
[friendica.git] / src / Model / Post / Collection.php
index 363761d477a08831bd517a88bf40195fb258ad5a..2758d8027749684c1d9b8952d58572965813ac00 100644 (file)
@@ -37,15 +37,16 @@ class Collection
         *
         * @param integer $uri_id
         * @param integer $type
+        * @param integer $author_id
         * @param integer $cache_uid If set to a non zero value, the featured cache is cleared
         */
-       public static function add(int $uri_id, int $type, int $cache_uid = 0)
+       public static function add(int $uri_id, int $type, int $author_id, int $cache_uid = 0)
        {
                if (empty($uri_id)) {
                        throw new BadMethodCallException('Empty URI_id');
                }
 
-               DBA::insert('post-collection', ['uri-id' => $uri_id, 'type' => $type], Database::INSERT_IGNORE);
+               DBA::insert('post-collection', ['uri-id' => $uri_id, 'type' => $type, 'author-id' => $author_id], Database::INSERT_IGNORE);
 
                if (!empty($cache_uid) && ($type == self::FEATURED)) {
                        DI::cache()->delete(ActivityPub\Transmitter::CACHEKEY_FEATURED . $cache_uid);