mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
Added missing parameter
This commit is contained in:
parent
cd070954da
commit
f57ad05736
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue