aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-05-15 16:08:51 -0700
committerzotlabs <mike@macgirvin.com>2018-05-15 16:08:51 -0700
commit16930c1c54ef4bb3077bb868a366c0165eb33fae (patch)
treedf0080677b787c54239107cceec7fbc3e2aaa13b /include/items.php
parentde63e40a704761c2efd1e04e1313a37c43fef20e (diff)
downloadvolse-hubzilla-16930c1c54ef4bb3077bb868a366c0165eb33fae.tar.gz
volse-hubzilla-16930c1c54ef4bb3077bb868a366c0165eb33fae.tar.bz2
volse-hubzilla-16930c1c54ef4bb3077bb868a366c0165eb33fae.zip
anybody authenticated not correctly handled in can_comment_on_post()
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php2
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;