mirror of
https://github.com/friendica/friendica
synced 2024-11-11 03:02:54 +00:00
Correction: Must be inverted
This commit is contained in:
parent
9e7467f8f9
commit
358cbe812a
1 changed files with 1 additions and 1 deletions
|
@ -727,7 +727,7 @@ class Contact extends BaseObject
|
|||
$fields['avatar'] = System::baseUrl() . '/photo/profile/' .$uid . '.' . $file_suffix;
|
||||
$fields['forum'] = $user['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
|
||||
$fields['prv'] = $user['page-flags'] == User::PAGE_FLAGS_PRVGROUP;
|
||||
$fields['unsearchable'] = $user['hidewall'] || $profile['net-publish'];
|
||||
$fields['unsearchable'] = $user['hidewall'] || !$profile['net-publish'];
|
||||
|
||||
// it seems as if ported accounts can have wrong values, so we make sure that now everything is fine.
|
||||
$fields['url'] = System::baseUrl() . '/profile/' . $user['nickname'];
|
||||
|
|
Loading…
Reference in a new issue