diff options
author | friendica <info@friendica.com> | 2014-08-06 21:16:24 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-06 21:16:24 -0700 |
commit | 2cff122d6ffcd47e42593d22c1c8d19f45ee91ef (patch) | |
tree | a1607f94448ba93586a84c347dd52f226b58eba5 /mod/item.php | |
parent | 86bccf35a24019830fc54ac781f985d9add6eddf (diff) | |
download | volse-hubzilla-2cff122d6ffcd47e42593d22c1c8d19f45ee91ef.tar.gz volse-hubzilla-2cff122d6ffcd47e42593d22c1c8d19f45ee91ef.tar.bz2 volse-hubzilla-2cff122d6ffcd47e42593d22c1c8d19f45ee91ef.zip |
public scope delivery issues
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/item.php b/mod/item.php index 01c486e5c..50bc53d9f 100644 --- a/mod/item.php +++ b/mod/item.php @@ -275,14 +275,14 @@ function item_post(&$a) { $str_contact_allow = $orig_post['allow_cid']; $str_group_deny = $orig_post['deny_gid']; $str_contact_deny = $orig_post['deny_cid']; - $public_scope = $orig_post['public_scope']; + $public_policy = $orig_post['public_policy']; } if((strlen($str_group_allow)) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny) - || strlen($public_scope)) { + || strlen($public_policy)) { $private = 1; } |