From 295ee82a61396bed233288df5c585ba392005475 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 19 Dec 2019 12:39:30 +0000 Subject: [PATCH] Changed "??" to "?:" --- include/api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/api.php b/include/api.php index 55a5d6f6d..5c708c0b7 100644 --- a/include/api.php +++ b/include/api.php @@ -5104,10 +5104,10 @@ function api_friendica_remoteauth() $cid = $contact['id']; - $dfrn_id = $contact['issued-id'] ?? $contact['dfrn-id']; + $dfrn_id = $contact['issued-id'] ?: $contact['dfrn-id']; if (($contact['network'] !== Protocol::DFRN) || empty($dfrn_id)) { - System::externalRedirect($url ?? $c_url); + System::externalRedirect($url ?: $c_url); } if ($contact['duplex'] && $contact['issued-id']) {