diff options
author | friendica <info@friendica.com> | 2014-11-10 19:22:23 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-10 19:22:23 -0800 |
commit | 0a84b45793735645357986bab20a0ed3cda80b38 (patch) | |
tree | 49fa40794b6a442d47d9af79a60b5c79a24539bb /include | |
parent | d432f4ccd5696565dbc6e726d6d06eb77fd35f77 (diff) | |
parent | 7cd06b736ac9ce1d78b84880c63e25ee7f01c362 (diff) | |
download | volse-hubzilla-0a84b45793735645357986bab20a0ed3cda80b38.tar.gz volse-hubzilla-0a84b45793735645357986bab20a0ed3cda80b38.tar.bz2 volse-hubzilla-0a84b45793735645357986bab20a0ed3cda80b38.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'include')
-rw-r--r-- | include/permissions.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/permissions.php b/include/permissions.php index 186ba32d8..119ecc865 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -549,7 +549,7 @@ function get_role_perms($role) { $ret['channel_r_profile'] = PERMS_PUBLIC; $ret['channel_r_photos'] = PERMS_PUBLIC; $ret['channel_r_abook'] = PERMS_PUBLIC; - $ret['channel_w_stream'] = PERMS_CONTACTS; + $ret['channel_w_stream'] = 0; $ret['channel_w_wall'] = PERMS_CONTACTS; $ret['channel_w_tagwall'] = PERMS_CONTACTS; $ret['channel_w_comment'] = PERMS_CONTACTS; @@ -581,7 +581,7 @@ function get_role_perms($role) { $ret['channel_r_profile'] = PERMS_PUBLIC; $ret['channel_r_photos'] = PERMS_PUBLIC; $ret['channel_r_abook'] = PERMS_PUBLIC; - $ret['channel_w_stream'] = PERMS_CONTACTS; + $ret['channel_w_stream'] = 0; $ret['channel_w_wall'] = PERMS_CONTACTS; $ret['channel_w_tagwall'] = PERMS_SPECIFIC; $ret['channel_w_comment'] = PERMS_CONTACTS; @@ -614,7 +614,7 @@ function get_role_perms($role) { $ret['channel_r_profile'] = PERMS_CONTACTS; $ret['channel_r_photos'] = PERMS_CONTACTS; $ret['channel_r_abook'] = PERMS_CONTACTS; - $ret['channel_w_stream'] = PERMS_CONTACTS; + $ret['channel_w_stream'] = 0; $ret['channel_w_wall'] = PERMS_CONTACTS; $ret['channel_w_tagwall'] = 0; $ret['channel_w_comment'] = PERMS_CONTACTS; |