aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-04-20 14:38:15 -0700
committerzotlabs <mike@macgirvin.com>2018-04-20 18:58:21 -0700
commit1bb67f63e37a10b9bcf5c6ea1d0d4ae431b00cab (patch)
tree5cecf97e3da35d2f5a465043e5a0b8193275e98e
parentb12d254427135bc3313f22163e9c3f4c42e68076 (diff)
downloadvolse-hubzilla-1bb67f63e37a10b9bcf5c6ea1d0d4ae431b00cab.tar.gz
volse-hubzilla-1bb67f63e37a10b9bcf5c6ea1d0d4ae431b00cab.tar.bz2
volse-hubzilla-1bb67f63e37a10b9bcf5c6ea1d0d4ae431b00cab.zip
anonymous comments shouldn't be allowed in StdLimits
-rw-r--r--Zotlabs/Access/PermissionLimits.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/Zotlabs/Access/PermissionLimits.php b/Zotlabs/Access/PermissionLimits.php
index 1d15098fc..eb660ead9 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;