Update PermissionLimits.php

anon comment permissions fix
This commit is contained in:
Mike Macgirvin 2018-04-22 07:00:01 +10:00 committed by GitHub
parent fa78dc79f3
commit 2431631b46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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