diff options
author | friendica <info@friendica.com> | 2013-08-01 18:50:36 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-01 18:50:36 -0700 |
commit | 222fe08420802f7eacd4a544953f507d536c3fb8 (patch) | |
tree | 26a031f9a1c066402a7a0d475e3429830e291707 /mod/mood.php | |
parent | 6197f945adb62da9d1aeb2a8f4058ed4651fa3b6 (diff) | |
download | volse-hubzilla-222fe08420802f7eacd4a544953f507d536c3fb8.tar.gz volse-hubzilla-222fe08420802f7eacd4a544953f507d536c3fb8.tar.bz2 volse-hubzilla-222fe08420802f7eacd4a544953f507d536c3fb8.zip |
ensure that no unencrypted content leaks through item_store which is private - we typically do this in mod/item, but some functions
bypass mod/item to create private posts
Diffstat (limited to 'mod/mood.php')
-rwxr-xr-x | mod/mood.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/mood.php b/mod/mood.php index 0c611997c..7b6a0c392 100755 --- a/mod/mood.php +++ b/mod/mood.php @@ -38,7 +38,7 @@ function mood_init(&$a) { ); if(count($r)) { $parent_mid = $r[0]['mid']; - $private = $r[0]['private']; + $private = $r[0]['item_private']; $allow_cid = $r[0]['allow_cid']; $allow_gid = $r[0]['allow_gid']; $deny_cid = $r[0]['deny_cid']; @@ -80,6 +80,7 @@ function mood_init(&$a) { $arr['allow_gid'] = $allow_gid; $arr['deny_cid'] = $deny_cid; $arr['deny_gid'] = $deny_gid; + $arr['item_private'] = $private; $arr['verb'] = $activity; $arr['body'] = $action; |