display the fact that a conversation is private without disclosing the details of who can/cannot see it.
This commit is contained in:
parent
e241c401cf
commit
a42b9ea3de
6 changed files with 40 additions and 11 deletions
|
@ -22,6 +22,13 @@ function lockview_content(&$a) {
|
|||
$deny_users = expand_acl($item['deny_cid']);
|
||||
$deny_groups = expand_acl($item['deny_gid']);
|
||||
|
||||
if(($item['private']) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid']))
|
||||
&& (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) {
|
||||
|
||||
echo t('Remote privacy information not available.') . '<br />';
|
||||
killme();
|
||||
}
|
||||
|
||||
$o = t('Visible to:') . '<br />';
|
||||
$l = array();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue