mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
Merge pull request #10881 from MrPetovan/bug/10872-acl-mail-contacts
Switch available contact selection to private-supporting networks in ACL
This commit is contained in:
commit
dec87d89c0
1 changed files with 1 additions and 3 deletions
|
@ -62,8 +62,6 @@ class ACL
|
||||||
$page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css'));
|
$page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css'));
|
||||||
$page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css'));
|
$page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css'));
|
||||||
|
|
||||||
// When used for private messages, we limit correspondence to mutual DFRN/Friendica friends and the selector
|
|
||||||
// to one recipient. By default our selector allows multiple selects amongst all contacts.
|
|
||||||
$condition = [
|
$condition = [
|
||||||
'uid' => local_user(),
|
'uid' => local_user(),
|
||||||
'self' => false,
|
'self' => false,
|
||||||
|
@ -72,7 +70,7 @@ class ACL
|
||||||
'archive' => false,
|
'archive' => false,
|
||||||
'deleted' => false,
|
'deleted' => false,
|
||||||
'rel' => [Contact::FOLLOWER, Contact::SHARING, Contact::FRIEND],
|
'rel' => [Contact::FOLLOWER, Contact::SHARING, Contact::FRIEND],
|
||||||
'network' => Protocol::FEDERATED,
|
'network' => Protocol::SUPPORT_PRIVATE,
|
||||||
];
|
];
|
||||||
|
|
||||||
$contacts = Contact::selectToArray(
|
$contacts = Contact::selectToArray(
|
||||||
|
|
Loading…
Reference in a new issue