mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-01 19:09:30 +01:00
fixed issue / applied patch [ 1445457 ] handling of non_blocking events
This commit is contained in:
parent
4b1f545141
commit
a580524693
@ -430,6 +430,8 @@ class bocal
|
||||
'title' => lang('private'),
|
||||
'participants' => array_intersect_key($event['participants'],array_flip($allowed_participants)),
|
||||
'public'=> 0,
|
||||
'category' => $event['category'], // category is visible anyway, eg. by using planner by cat
|
||||
'non_blocking' => $event['non_blocking'],
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -983,6 +983,8 @@ class uiforms extends uical
|
||||
{
|
||||
if ((int)$cal_id && $event['id'] == (int)$cal_id) continue; // ignore our own event
|
||||
|
||||
if ($event['non_blocking']) continue; // ignore non_blocking events
|
||||
|
||||
if ($this->debug)
|
||||
{
|
||||
echo "<p>ft_start=".date('D d.m.Y H:i',$ft_start)."<br>\n";
|
||||
|
Loading…
Reference in New Issue
Block a user