From 9d718ac5290506e08222c62e2fd36026256fba41 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 17 Sep 2013 17:38:43 -0700 Subject: sync photo permissions with the attached item whenever they change. --- mod/item.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'mod/item.php') diff --git a/mod/item.php b/mod/item.php index 367a0c4be..895784ff9 100644 --- a/mod/item.php +++ b/mod/item.php @@ -1087,12 +1087,15 @@ function fix_attached_photo_permissions($uid,$xchan_hash,$body, intval($uid) ); if($r) { - $r = q("UPDATE item SET allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s' + $private = (($str_contact_allow || $str_group_allow || $str_contact_deny || $str_group_deny) ? true : false); + + $r = q("UPDATE item SET allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s', item_private = %d WHERE id = %d AND uid = %d limit 1", dbesc($str_contact_allow), dbesc($str_group_allow), dbesc($str_contact_deny), dbesc($str_group_deny), + intval($private), intval($r[0]['id']), intval($uid) ); -- cgit v1.2.3