From 2d6a1795b7ae1fc5652798347d958d7ae71cb763 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 15 Jun 2014 02:32:12 -0700 Subject: ensure item_private tracks acl fields on edit --- mod/item.php | 11 ++++++++++- version.inc | 2 +- 2 files changed, 11 insertions(+), 2 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']; diff --git a/version.inc b/version.inc index eb1f668e9..3d6f62bbd 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-06-14.706 +2014-06-15.707 -- cgit v1.2.3