diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-11-26 13:28:31 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-11-26 13:28:31 +0100 |
commit | f80aff4a65fcd4318e269aad41593e18bfb145a4 (patch) | |
tree | 8a03ff06463e6d5168201afb12ad6ae0d6da9ffe | |
parent | c7cbd41c16e36a6244ada6d4317dcd390e8dde0d (diff) | |
download | volse-hubzilla-f80aff4a65fcd4318e269aad41593e18bfb145a4.tar.gz volse-hubzilla-f80aff4a65fcd4318e269aad41593e18bfb145a4.tar.bz2 volse-hubzilla-f80aff4a65fcd4318e269aad41593e18bfb145a4.zip |
also catch the other object
-rw-r--r-- | include/event.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/event.php b/include/event.php index c82699eff..a3765a145 100644 --- a/include/event.php +++ b/include/event.php @@ -931,6 +931,11 @@ function event_store_item($arr, $event) { 'type' => ACTIVITY_OBJ_EVENT, 'id' => z_root() . '/event/' . $event['event_hash'], 'title' => $arr['summary'], + 'start' => $arr['start'], + 'finish' => $arr['finish'], + 'description' => $arr['description'], + 'location' => $arr['location'], + 'adjust' => $arr['adjust'], 'content' => format_event_bbcode($arr), 'author' => array( 'name' => $x[0]['xchan_name'], |