From 546571a6f8d5434d47340119eeceb51d8a8d4040 Mon Sep 17 00:00:00 2001 From: "Sekan, Tobias" Date: Thu, 20 Aug 2020 08:20:00 +0200 Subject: [PATCH] Show place from events on import calender --- htdocs/comm/action/index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/comm/action/index.php b/htdocs/comm/action/index.php index 97d732f6908..dfe948c1586 100644 --- a/htdocs/comm/action/index.php +++ b/htdocs/comm/action/index.php @@ -1072,6 +1072,8 @@ if (count($listofextcals)) elseif ($icalevent['DESCRIPTION']) $event->label = dol_nl2br($icalevent['DESCRIPTION'], 1); else $event->label = $langs->trans("ExtSiteNoLabel"); + if ($icalevent['LOCATION']) $event->location = $icalevent['LOCATION']; + $event->date_start_in_calendar = $event->datep; if ($event->datef != '' && $event->datef >= $event->datep) $event->date_end_in_calendar = $event->datef;