diff options
author | zotlabs <mike@macgirvin.com> | 2020-01-12 22:41:28 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2020-01-12 22:41:28 -0800 |
commit | d3cbbe029c1f19a77ac0c278f735d81b9dd3a3ec (patch) | |
tree | 327424bb0963a62a9a8bbfd2b8b588ced248080f /include/event.php | |
parent | 88ebbd90d8925a74029a32f57ec581d2b3ba64ed (diff) | |
download | volse-hubzilla-d3cbbe029c1f19a77ac0c278f735d81b9dd3a3ec.tar.gz volse-hubzilla-d3cbbe029c1f19a77ac0c278f735d81b9dd3a3ec.tar.bz2 volse-hubzilla-d3cbbe029c1f19a77ac0c278f735d81b9dd3a3ec.zip |
rework activitystreams events - send invite/event activities instead of create/event. Also a first pass at creating a Zap export file from Hubzilla. Much more work is needed before this is functional.
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/event.php b/include/event.php index 9d76aabd6..30dca2df2 100644 --- a/include/event.php +++ b/include/event.php @@ -1194,7 +1194,7 @@ function event_store_item($arr, $event) { if(! $arr['mid']) { $arr['uuid'] = $event['event_hash']; - $arr['mid'] = z_root() . '/event/' . $event['event_hash']; + $arr['mid'] = z_root() . '/activity/' . $event['event_hash']; } $item_arr['aid'] = $z[0]['channel_account_id']; |