diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-15 16:08:51 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-16 10:57:13 +0200 |
commit | da460ff32f4bebc8c2d7b17b1eb883851114fccc (patch) | |
tree | e2e252f943c983eb7b3747500b8f9c8aea155c10 /include | |
parent | 984de8f46f138932dda66adb4160b57220836697 (diff) | |
download | volse-hubzilla-da460ff32f4bebc8c2d7b17b1eb883851114fccc.tar.gz volse-hubzilla-da460ff32f4bebc8c2d7b17b1eb883851114fccc.tar.bz2 volse-hubzilla-da460ff32f4bebc8c2d7b17b1eb883851114fccc.zip |
anybody authenticated not correctly handled in can_comment_on_post()
Diffstat (limited to 'include')
-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 8bc4595b6..90154bce0 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; |