From: Michael Date: Sun, 17 Jan 2021 21:10:16 +0000 (+0000) Subject: Added missing parameter X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f57ad057365ac32a947a4fc343ce962a1429e852;p=friendica.git Added missing parameter --- diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index 5167a5e7a7..4934e983b4 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -210,7 +210,7 @@ class DFRN break; // NOTREACHED } - $contact = DBA::selectFirst('contact', ["NOT `blocked` AND `contact`.`uid` = ?" . $sql_extra, $owner_id]); + $contact = DBA::selectFirst('contact', [], ["NOT `blocked` AND `contact`.`uid` = ?" . $sql_extra, $owner_id]); if (!DBA::isResult($contact)) { Logger::notice('No contact found', ['uid' => $owner_id]); exit();