mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-10 16:08:34 +01:00
fix for saving of priority and a fix for is_private() missing parameter 3
This commit is contained in:
parent
06e5b896d4
commit
ef61adecc9
@ -166,6 +166,7 @@
|
|||||||
|
|
||||||
$phpgw->calendar->event_set_participants($cal_stream,$participants);
|
$phpgw->calendar->event_set_participants($cal_stream,$participants);
|
||||||
|
|
||||||
|
$phpgw->calendar->event->priority = intval($priority);
|
||||||
$event = $phpgw->calendar->event;
|
$event = $phpgw->calendar->event;
|
||||||
|
|
||||||
$phpgw->session->appsession('entry','calendar',$event);
|
$phpgw->session->appsession('entry','calendar',$event);
|
||||||
@ -208,7 +209,7 @@
|
|||||||
{
|
{
|
||||||
$over = $phpgw->calendar->fetch_event($cal_stream,$overlapping_events[$i]);
|
$over = $phpgw->calendar->fetch_event($cal_stream,$overlapping_events[$i]);
|
||||||
$overlap .= '<li>';
|
$overlap .= '<li>';
|
||||||
$private = $phpgw->calendar->is_private($over,$over->owner);
|
$private = $phpgw->calendar->is_private($over,$over->owner,'title');
|
||||||
|
|
||||||
if(strtoupper($private) == 'PRIVATE')
|
if(strtoupper($private) == 'PRIVATE')
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user