]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Post/Collection.php
Use the owner, not the author
[friendica.git] / src / Model / Post / Collection.php
index 2758d8027749684c1d9b8952d58572965813ac00..af336e92a73932299d337739982cac4593ab1b6c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -81,7 +81,7 @@ class Collection
         * @param array $fields
         * @return array
         */
-       public static function selectToArrayForContact(int $cid, int $type = self::FEATURED, array $fields = []) 
+       public static function selectToArrayForContact(int $cid, int $type = self::FEATURED, array $fields = [])
        {
                return DBA::selectToArray('collection-view', $fields, ['cid' => $cid, 'private' => [Item::PUBLIC, Item::UNLISTED], 'deleted' => false, 'type' => $type]);
        }