diff options
author | Mario <mario@mariovavti.com> | 2020-10-10 19:06:35 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-10 19:06:35 +0000 |
commit | ed845d93bc7ac5f46ccb1ea95d53bc5e5f2756bd (patch) | |
tree | 042e5208a0bcde20b629501a2ef19781fd478a93 /include | |
parent | 595f3d99b4bd2618630f9a49423b29bfbfcbca41 (diff) | |
download | volse-hubzilla-ed845d93bc7ac5f46ccb1ea95d53bc5e5f2756bd.tar.gz volse-hubzilla-ed845d93bc7ac5f46ccb1ea95d53bc5e5f2756bd.tar.bz2 volse-hubzilla-ed845d93bc7ac5f46ccb1ea95d53bc5e5f2756bd.zip |
5.0RC testing: fix issue with event responses
Diffstat (limited to 'include')
-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 679440726..765086167 100644 --- a/include/event.php +++ b/include/event.php @@ -1247,7 +1247,7 @@ function event_store_item($arr, $event) { $item_arr['deny_cid'] = $arr['deny_cid']; $item_arr['deny_gid'] = $arr['deny_gid']; $item_arr['item_private'] = $private; - $item_arr['verb'] = ACTIVITY_POST; + $item_arr['verb'] = 'Invite'; $item_arr['item_wall'] = $item_wall; $item_arr['item_origin'] = $item_origin; $item_arr['item_thread_top'] = $item_thread_top; |