bug #38 ability to restrict profile, wall, photos from non-friends

This commit is contained in:
Friendika 2011-05-28 00:49:03 -07:00
parent 4e8a97f30a
commit 69f014d02b
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}