]> git.mxchange.org Git - friendica.git/commitdiff
Added field value
authorMichael <heluecht@pirati.ca>
Mon, 3 Aug 2020 19:40:31 +0000 (19:40 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 3 Aug 2020 19:40:31 +0000 (19:40 +0000)
src/Model/GContact.php

index 3fe123e15f2ac6d300ead4fb69d407acf36f01f9..097b43456a4aded10be99feb80b9cebfd5db75e8 100644 (file)
@@ -46,7 +46,7 @@ class GContact
                        $sourceId,
                ];
 
-               return Contact\Relation::countCommonFollows($sourceId, $targetIds['public'] ?? 0, $condition);
+               return Contact\Relation::countCommonFollows($sourceId, $targetIds['public'] ?? 0, [], $condition);
        }
 
        /**
@@ -74,7 +74,7 @@ LIMIT 1",
                        $sourceId,
                ];
 
-               return Contact\Relation::countCommonFollowers($sourceId, $targetPublicContact['id'] ?? 0, $condition);
+               return Contact\Relation::countCommonFollowers($sourceId, $targetPublicContact['id'] ?? 0, [], $condition);
        }
 
        /**
@@ -100,7 +100,7 @@ LIMIT 1",
                        $sourceId,
                ];
 
-               return Contact\Relation::listCommonFollows($sourceId, $targetIds['public'] ?? 0, $condition, $limit, $start, $shuffle);
+               return Contact\Relation::listCommonFollows($sourceId, $targetIds['public'] ?? 0, [], $condition, $limit, $start, $shuffle);
        }
 
        /**
@@ -134,6 +134,6 @@ LIMIT 1",
                        $sourceId,
                ];
 
-               return Contact\Relation::listCommonFollows($sourceId, $targetPublicContact['id'] ?? 0, $condition, $limit, $start, $shuffle);
+               return Contact\Relation::listCommonFollows($sourceId, $targetPublicContact['id'] ?? 0, [], $condition, $limit, $start, $shuffle);
        }
 }