Fix wrong contact array key reference in Search\Acl
- Addresses https://github.com/friendica/friendica/issues/8877#issuecomment-672189155
This commit is contained in:
parent
7c16a25fc9
commit
ac90387d82
|
@ -350,7 +350,7 @@ class Acl extends BaseModule
|
||||||
'type' => 'c',
|
'type' => 'c',
|
||||||
'photo' => Contact::getMicro($contact),
|
'photo' => Contact::getMicro($contact),
|
||||||
'name' => htmlspecialchars($contact['name']),
|
'name' => htmlspecialchars($contact['name']),
|
||||||
'id' => intval($contact['cid']),
|
'id' => intval($contact['id']),
|
||||||
'network' => $contact['network'],
|
'network' => $contact['network'],
|
||||||
'link' => $contact['url'],
|
'link' => $contact['url'],
|
||||||
'nick' => htmlentities(($contact['nick'] ?? '') ?: $contact['addr']),
|
'nick' => htmlentities(($contact['nick'] ?? '') ?: $contact['addr']),
|
||||||
|
|
Loading…
Reference in a new issue