]> git.mxchange.org Git - friendica.git/commitdiff
Added missing parameter
authorMichael <heluecht@pirati.ca>
Sun, 17 Jan 2021 21:10:16 +0000 (21:10 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 17 Jan 2021 21:10:16 +0000 (21:10 +0000)
src/Protocol/DFRN.php

index 5167a5e7a7fe7b9798b0528d6212396c684efea4..4934e983b48c85d8a96ef5fc62b6421638220cc9 100644 (file)
@@ -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();