diff options
Diffstat (limited to 'include/channel.php')
-rw-r--r-- | include/channel.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/channel.php b/include/channel.php index 1101e39e9..708e70b1c 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1566,9 +1566,11 @@ function is_public_profile() { if(intval(get_config('system','block_public'))) return false; $channel = App::get_channel(); - if($channel && $channel['channel_r_profile'] == PERMS_PUBLIC) - return true; - + if($channel) { + $perm = \Zotlabs\Access\PermissionLimit::Get($channel['channel_id'],'view_profile'); + if($perm == PERMS_PUBLIC) + return true; + } return false; } |