event integration improvements

This commit is contained in:
redmatrix
2015-08-19 16:50:32 -07:00
parent 4e3d295c90
commit a4caaefd32
4 changed files with 55 additions and 3 deletions

View File

@@ -850,6 +850,17 @@ function event_store_item($arr, $event) {
$item_arr['item_origin'] = $item_origin;
$item_arr['item_thread_top'] = $item_thread_top;;
$attach = array(array(
'href' => z_root() . '/events/ical/' . urlencode($event['event_hash']),
'length' => 0,
'type' => 'text/calendar',
'title' => t('event') . '-' . $event['event_hash'],
'revision' => ''
));
$item_arr['attach'] = $attach;
if(array_key_exists('term', $arr))
$item_arr['term'] = $arr['term'];