aboutsummaryrefslogtreecommitdiffstats
path: root/include/event.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2020-01-24 19:38:52 -0800
committerzotlabs <mike@macgirvin.com>2020-01-24 19:38:52 -0800
commitead56c59e2551f39d00e880a2cdb4b2d02b38705 (patch)
treeca6206ea8c8ff7ad98e9cd98908638ba4496d2ab /include/event.php
parent19a8dfaa5c55b674df25ae7af5c1ffcf9070e522 (diff)
downloadvolse-hubzilla-ead56c59e2551f39d00e880a2cdb4b2d02b38705.tar.gz
volse-hubzilla-ead56c59e2551f39d00e880a2cdb4b2d02b38705.tar.bz2
volse-hubzilla-ead56c59e2551f39d00e880a2cdb4b2d02b38705.zip
bugfix: event_addtocal not preserving original privacy expectation
Diffstat (limited to 'include/event.php')
-rw-r--r--include/event.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/event.php b/include/event.php
index 59057e7d5..64e63074c 100644
--- a/include/event.php
+++ b/include/event.php
@@ -614,7 +614,7 @@ function event_addtocal($item_id, $uid) {
$ev['event_hash'] = $item['resource_id'];
}
- if($ev->private)
+ if($ev['private'])
$ev['allow_cid'] = '<' . $channel['channel_hash'] . '>';
else {
$acl = new Zotlabs\Access\AccessList($channel);