From e189f5f88722f174b3dbba440e795b58bf89c075 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Sun, 22 Apr 2018 06:58:33 +1000 Subject: [PATCH] Update PermissionLimits.php Difficult for me to do this locally at the moment so updating in git --- Zotlabs/Access/PermissionLimits.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Access/PermissionLimits.php b/Zotlabs/Access/PermissionLimits.php index 1d15098fc..125d11b7b 100644 --- a/Zotlabs/Access/PermissionLimits.php +++ b/Zotlabs/Access/PermissionLimits.php @@ -41,10 +41,8 @@ class PermissionLimits { $limits = []; $perms = Permissions::Perms(); - $anon_comments = get_config('system','anonymous_comments',true); - foreach($perms as $k => $v) { - if(strstr($k, 'view') || ($k === 'post_comments' && $anon_comments)) + if(strstr($k, 'view')) $limits[$k] = PERMS_PUBLIC; else $limits[$k] = PERMS_SPECIFIC; @@ -90,4 +88,4 @@ class PermissionLimits { return false; } -} \ No newline at end of file +}