diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-15 16:08:51 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-15 16:08:51 -0700 |
commit | 16930c1c54ef4bb3077bb868a366c0165eb33fae (patch) | |
tree | df0080677b787c54239107cceec7fbc3e2aaa13b | |
parent | de63e40a704761c2efd1e04e1313a37c43fef20e (diff) | |
download | volse-hubzilla-16930c1c54ef4bb3077bb868a366c0165eb33fae.tar.gz volse-hubzilla-16930c1c54ef4bb3077bb868a366c0165eb33fae.tar.bz2 volse-hubzilla-16930c1c54ef4bb3077bb868a366c0165eb33fae.zip |
anybody authenticated not correctly handled in can_comment_on_post()
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 55b5a73db..e75a9659d 100755 --- a/include/items.php +++ b/include/items.php @@ -261,6 +261,7 @@ function can_comment_on_post($observer_xchan, $item) { return true; break; case 'public': + case 'authenticated': // We don't really allow or support public comments yet, but anonymous // folks won't ever reach this point (as $observer_xchan will be empty). // This means the viewer has an xchan and we can identify them. @@ -268,7 +269,6 @@ function can_comment_on_post($observer_xchan, $item) { break; case 'any connections': case 'contacts': - case 'authenticated': case '': if(array_key_exists('owner',$item) && get_abconfig($item['uid'],$item['owner']['abook_xchan'],'their_perms','post_comments')) { return true; |