* Calendar: differ between private events and only having free/busy-rights by showing "busy" instead of "private" as title

This commit is contained in:
ralf 2024-09-27 13:13:19 +02:00
parent eda23f0583
commit a1958f102b

View File

@ -832,7 +832,7 @@ class calendar_bo
'end' => $event['end'],
'whole_day' => $event['whole_day'],
'tzid' => $event['tzid'],
'title' => lang('private'),
'title' => $event['public'] ? lang('busy') : lang('private'),
'modified' => $event['modified'],
'owner' => $event['owner'],
'uid' => $event['uid'],