diff options
author | friendica <info@friendica.com> | 2012-10-07 18:44:06 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-07 18:44:06 -0700 |
commit | a56c0425e6f80e77a1e52b13cd5a14cb6e838b9a (patch) | |
tree | 181d3e58294b5bd9c62307bd0a5b2447b3f3c625 /mod/item.php | |
parent | c612253627019c146b8a49d6f927b475cac8be2f (diff) | |
download | volse-hubzilla-a56c0425e6f80e77a1e52b13cd5a14cb6e838b9a.tar.gz volse-hubzilla-a56c0425e6f80e77a1e52b13cd5a14cb6e838b9a.tar.bz2 volse-hubzilla-a56c0425e6f80e77a1e52b13cd5a14cb6e838b9a.zip |
start fixing all the item queries
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/item.php b/mod/item.php index 978ce6712..ae011d3c6 100644 --- a/mod/item.php +++ b/mod/item.php @@ -227,7 +227,7 @@ function item_post(&$a) { $app = $orig_post['app']; $title = escape_tags(trim($_REQUEST['title'])); $body = escape_tags(trim($_REQUEST['body'])); - $private = $orig_post['private']; + $private = $orig_post['item_private']; } else { @@ -273,12 +273,12 @@ function item_post(&$a) { if($parent_item) { $private = 0; - if(($parent_item['private']) + if(($parent_item['item_private']) || strlen($parent_item['allow_cid']) || strlen($parent_item['allow_gid']) || strlen($parent_item['deny_cid']) || strlen($parent_item['deny_gid'])) { - $private = (($parent_item['private']) ? $parent_item['private'] : 1); + $private = (($parent_item['item_private']) ? $parent_item['item_private'] : 1); } $str_contact_allow = $parent_item['allow_cid']; @@ -597,7 +597,7 @@ function item_post(&$a) { $datarray['allow_gid'] = $str_group_allow; $datarray['deny_cid'] = $str_contact_deny; $datarray['deny_gid'] = $str_group_deny; - $datarray['private'] = $private; + $datarray['item_private'] = $private; $datarray['attach'] = $attachments; $datarray['thr_parent'] = $thr_parent; $datarray['postopts'] = ''; @@ -707,7 +707,7 @@ function item_post(&$a) { // Inherit ACL's from the parent item. - $r = q("UPDATE `item` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d + $r = q("UPDATE `item` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `item_private` = %d WHERE `id` = %d LIMIT 1", dbesc($parent_item['allow_cid']), dbesc($parent_item['allow_gid']), |