forked from extern/egroupware
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'),
|
'title' => lang('private'),
|
||||||
'participants' => array_intersect_key($event['participants'],array_flip($allowed_participants)),
|
'participants' => array_intersect_key($event['participants'],array_flip($allowed_participants)),
|
||||||
'public'=> 0,
|
'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 ((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)
|
if ($this->debug)
|
||||||
{
|
{
|
||||||
echo "<p>ft_start=".date('D d.m.Y H:i',$ft_start)."<br>\n";
|
echo "<p>ft_start=".date('D d.m.Y H:i',$ft_start)."<br>\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user