mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
bug #38 ability to restrict profile, wall, photos from non-friends
This commit is contained in:
parent
4e8a97f30a
commit
69f014d02b
2 changed files with 2 additions and 2 deletions
|
@ -769,7 +769,7 @@ function photos_content(&$a) {
|
|||
intval($owner_uid)
|
||||
);
|
||||
|
||||
if(count($r) && $r[0]['hidewall'] && (local_user() !== $owner_uid) && (! remote_contact)) {
|
||||
if(count($r) && $r[0]['hidewall'] && (local_user() != $owner_uid) && (! $remote_contact)) {
|
||||
notice( t('Access to this item is restricted.') . EOL);
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -98,7 +98,7 @@ function profile_content(&$a, $update = 0) {
|
|||
|
||||
$is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
|
||||
|
||||
if($a->profile['hidewall'] && (! $is_owner) && (! remote_contact)) {
|
||||
if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
|
||||
notice( t('Access to this profile has been restricted.') . EOL);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue