mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
Fix more standards
This commit is contained in:
parent
2367f54d41
commit
c643eb8cb2
1 changed files with 5 additions and 2 deletions
|
@ -325,7 +325,10 @@ class ClientToServer
|
||||||
*/
|
*/
|
||||||
public static function getOutbox(array $owner, int $uid, int $page = null, int $max_id = null, string $requester = ''): array
|
public static function getOutbox(array $owner, int $uid, int $page = null, int $max_id = null, string $requester = ''): array
|
||||||
{
|
{
|
||||||
$condition = ['gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT], 'private' => [Item::PUBLIC, Item::UNLISTED]];
|
$condition = [
|
||||||
|
'gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT],
|
||||||
|
'private' => [Item::PUBLIC, Item::UNLISTED]
|
||||||
|
];
|
||||||
|
|
||||||
if (!empty($requester)) {
|
if (!empty($requester)) {
|
||||||
$requester_id = Contact::getIdForURL($requester, $owner['uid']);
|
$requester_id = Contact::getIdForURL($requester, $owner['uid']);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue