diff options
author | Olaf Conradi <olaf@conradi.org> | 2013-09-25 21:43:21 +0200 |
---|---|---|
committer | Olaf Conradi <olaf@conradi.org> | 2013-09-26 22:57:13 +0200 |
commit | 26492b3ad486bbcd7e5bb96289a7ade1bd00a186 (patch) | |
tree | acf02f43f05f638d766282cd763406be32ebc248 | |
parent | 00e5ded1c892a94c79a854327b44d8673cc43274 (diff) | |
download | volse-hubzilla-26492b3ad486bbcd7e5bb96289a7ade1bd00a186.tar.gz volse-hubzilla-26492b3ad486bbcd7e5bb96289a7ade1bd00a186.tar.bz2 volse-hubzilla-26492b3ad486bbcd7e5bb96289a7ade1bd00a186.zip |
Add explanation why public comments are disabled.
-rwxr-xr-x | include/items.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 4aecf9174..25bcf0253 100755 --- a/include/items.php +++ b/include/items.php @@ -98,6 +98,10 @@ function can_comment_on_post($observer_xchan,$item) { return true; break; case 'public': + # We don't allow public comments yet, until a policy + # for dealing with anonymous comments is in place with + # a means to moderate comments. Until that time, return + # false. return false; break; case 'contacts': @@ -3874,4 +3878,4 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C } return $items; -}
\ No newline at end of file +} |