mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
* Calendar: differ between private events and only having free/busy-rights by showing "busy" instead of "private" as title
This commit is contained in:
parent
eda23f0583
commit
a1958f102b
@ -832,7 +832,7 @@ class calendar_bo
|
|||||||
'end' => $event['end'],
|
'end' => $event['end'],
|
||||||
'whole_day' => $event['whole_day'],
|
'whole_day' => $event['whole_day'],
|
||||||
'tzid' => $event['tzid'],
|
'tzid' => $event['tzid'],
|
||||||
'title' => lang('private'),
|
'title' => $event['public'] ? lang('busy') : lang('private'),
|
||||||
'modified' => $event['modified'],
|
'modified' => $event['modified'],
|
||||||
'owner' => $event['owner'],
|
'owner' => $event['owner'],
|
||||||
'uid' => $event['uid'],
|
'uid' => $event['uid'],
|
||||||
|
Loading…
Reference in New Issue
Block a user