Now without array_merge

This commit is contained in:
Michael 2019-07-01 22:14:34 +00:00
parent 9e3aff9ade
commit ee8baf00ce
2 changed files with 2 additions and 2 deletions

View file

@ -1587,7 +1587,7 @@ class Contact extends BaseObject
return '';
}
if (in_array($contact["network"], array_merge(Protocol::FEDERATED ,['']))) {
if (empty($contact["network"]) || in_array($contact["network"], Protocol::FEDERATED)) {
$sql = "(`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))";
} else {
$sql = "`item`.`uid` = ?";