diff options
author | friendica <info@friendica.com> | 2014-06-15 02:32:12 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-06-15 02:32:12 -0700 |
commit | 2d6a1795b7ae1fc5652798347d958d7ae71cb763 (patch) | |
tree | ad9fffa37b6b34c683bb8ba74f8f74bf40873a3b /mod | |
parent | 0f6c321e3f23d43e407aa3b3b424f20b56e0032d (diff) | |
download | volse-hubzilla-2d6a1795b7ae1fc5652798347d958d7ae71cb763.tar.gz volse-hubzilla-2d6a1795b7ae1fc5652798347d958d7ae71cb763.tar.bz2 volse-hubzilla-2d6a1795b7ae1fc5652798347d958d7ae71cb763.zip |
ensure item_private tracks acl fields on edit
Diffstat (limited to 'mod')
-rw-r--r-- | mod/item.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index 7b105ee65..d32c4dcac 100644 --- a/mod/item.php +++ b/mod/item.php @@ -262,6 +262,7 @@ function item_post(&$a) { if($orig_post) { + $private = 0; // webpages are allowed to change ACLs after the fact. Normal conversation items aren't. if($webpage) { $str_group_allow = perms2str($_REQUEST['group_allow']); @@ -275,13 +276,21 @@ function item_post(&$a) { $str_group_deny = $orig_post['deny_gid']; $str_contact_deny = $orig_post['deny_cid']; } + + if((strlen($str_group_allow)) + || strlen($str_contact_allow) + || strlen($str_group_deny) + || strlen(str_contact_deny)) { + $private = 1; + } + + $location = $orig_post['location']; $coord = $orig_post['coord']; $verb = $orig_post['verb']; $app = $orig_post['app']; $title = $_REQUEST['title']; $body = $_REQUEST['body']; - $private = $orig_post['item_private']; $item_flags = $orig_post['item_flags']; $item_restrict = $orig_post['item_restrict']; $postopts = $orig_post['postopts']; |