X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=src%2FCore%2FSession.php;h=aa8de99d5cf2f47ea06d86981700ffa81fde9e13;hb=e19681684b382721158a0cb4c20840b74ea25161;hp=c4fbb3f8c6d043b9764a0ef2623c64a92e2752d9;hpb=52ea22505d109d07033066d4a45c1b785ceade33;p=friendica.git diff --git a/src/Core/Session.php b/src/Core/Session.php index c4fbb3f8c6..aa8de99d5c 100644 --- a/src/Core/Session.php +++ b/src/Core/Session.php @@ -1,6 +1,6 @@ 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); } /**