X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FSession.php;h=e648d4cac025bcff9335ebd6b35d8a8d5138b43a;hb=7637ae1dcc7a1341a95a62a883f3b2e51b8c388b;hp=7bbc8e5222a30d88be8273a4f39b4c6f9616a131;hpb=befc2af5043a3afde251721c0d27df695db1bb7e;p=friendica.git diff --git a/src/Core/Session.php b/src/Core/Session.php index 7bbc8e5222..e648d4cac0 100644 --- a/src/Core/Session.php +++ b/src/Core/Session.php @@ -116,16 +116,17 @@ class Session $session = DI::session(); $session->set('remote', []); + $remote = []; $remote_contacts = DBA::select('contact', ['id', 'uid'], ['nurl' => Strings::normaliseLink($session->get('my_url')), 'rel' => [Contact::FOLLOWER, Contact::FRIEND], 'self' => false]); while ($contact = DBA::fetch($remote_contacts)) { if (($contact['uid'] == 0) || Contact\User::isBlocked($contact['id'], $contact['uid'])) { continue; } - - $session->set('remote', [$contact['uid'] => $contact['id']]); + $remote[$contact['uid']] = $contact['id']; } DBA::close($remote_contacts); + $session->set('remote', $remote); } /**