diff options
author | friendica <info@friendica.com> | 2013-08-01 14:27:40 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-01 14:27:40 -0700 |
commit | 85c7d7165fadd2a569fafda824e4ac83af36ea12 (patch) | |
tree | d2c8a17199248a2059fcc72290fde064044e6616 /mod | |
parent | 2a848c0d3704ac7a4dbce71947c5cb1b362dd749 (diff) | |
download | volse-hubzilla-85c7d7165fadd2a569fafda824e4ac83af36ea12.tar.gz volse-hubzilla-85c7d7165fadd2a569fafda824e4ac83af36ea12.tar.bz2 volse-hubzilla-85c7d7165fadd2a569fafda824e4ac83af36ea12.zip |
yhis should fix the privacy leak - as well as non-private replies to private posts
Diffstat (limited to 'mod')
-rw-r--r-- | mod/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index 990acd2f0..dc8ee5015 100644 --- a/mod/item.php +++ b/mod/item.php @@ -684,7 +684,7 @@ function item_post(&$a) { dbesc($parent_item['allow_gid']), dbesc($parent_item['deny_cid']), dbesc($parent_item['deny_gid']), - intval($parent_item['private']), + intval($parent_item['item_private']), intval($post_id) ); |