Use accessing function for session variable

This commit is contained in:
Dean Townsley 2019-06-08 20:24:51 -05:00
parent 5c93db4097
commit 19e99f7e81
1 changed files with 4 additions and 6 deletions

View File

@ -122,14 +122,12 @@ class Security extends BaseObject
if (!$remote_verified) {
$cid = 0;
if (!empty($_SESSION['remote'])) {
foreach ($_SESSION['remote'] as $visitor) {
foreach (\Friendica\Core\Session::get('remote', []) as $visitor) {
if ($visitor['uid'] == $owner_id) {
$cid = $visitor['cid'];
break;
}
}
}
if ($cid && DBA::exists('contact', ['id' => $cid, 'uid' => $owner_id, 'blocked' => false])) {
$remote_verified = true;