diff options
-rw-r--r-- | mod/item.php | 5 | ||||
-rw-r--r-- | version.inc | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/mod/item.php b/mod/item.php index bc637debf..83cf3ce2d 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; } diff --git a/version.inc b/version.inc index f2e8ff81c..cae357807 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-05-20.1038 +2015-05-21.1039 |