diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-21 02:03:44 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-21 02:03:44 -0700 |
commit | 81d94dae2c5f986a5d5784f66b378d6320de2c07 (patch) | |
tree | f1792807f32a67b0f18b2419956ee770006ac54f /mod/item.php | |
parent | 62df06b3d6b2e56d271b69bebf8427caa715dd16 (diff) | |
download | volse-hubzilla-81d94dae2c5f986a5d5784f66b378d6320de2c07.tar.gz volse-hubzilla-81d94dae2c5f986a5d5784f66b378d6320de2c07.tar.bz2 volse-hubzilla-81d94dae2c5f986a5d5784f66b378d6320de2c07.zip |
preserve lock on edited comments
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index cbbaa9e27..d8eff5647 100644 --- a/mod/item.php +++ b/mod/item.php @@ -304,6 +304,7 @@ function item_post(&$a) { } } } + $public_policy = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($channel['channel_r_stream'],true)); if($webpage) @@ -326,13 +327,15 @@ function item_post(&$a) { $str_group_deny = $orig_post['deny_gid']; $str_contact_deny = $orig_post['deny_cid']; $public_policy = $orig_post['public_policy']; + $private = $orig_post['item_private']; } if((strlen($str_group_allow)) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny) - || strlen($public_policy)) { + || strlen($public_policy) + || $private) { $private = 1; } |