mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
Fix for bug #431933.
This commit is contained in:
parent
120a6eeab1
commit
b9ca04bb8a
@ -36,12 +36,17 @@
|
|||||||
echo 'Event ID: '.$id."<br>\n";
|
echo 'Event ID: '.$id."<br>\n";
|
||||||
|
|
||||||
$cal_stream = $phpgw->calendar->open('INBOX',$owner,'');
|
$cal_stream = $phpgw->calendar->open('INBOX',$owner,'');
|
||||||
$event = $phpgw->calendar->fetch_event($cal_stream,$id);
|
$event = $phpgw->calendar->fetch_event($id);
|
||||||
|
|
||||||
reset($event->participants);
|
reset($event->participants);
|
||||||
|
while(list($particpants,$status) = each($event->participants))
|
||||||
|
{
|
||||||
|
$parts[] = $participants;
|
||||||
|
}
|
||||||
|
@reset($parts);
|
||||||
|
|
||||||
$freetime = $phpgw->calendar->localdates(mktime(0,0,0,$event->start->month,$event->start->mday,$event->start->year) - $phpgw->calendar->tz_offset);
|
$freetime = $phpgw->calendar->localdates(mktime(0,0,0,$event->start->month,$event->start->mday,$event->start->year) - $phpgw->calendar->tz_offset);
|
||||||
echo $phpgw->calendar->timematrix($freetime,$phpgw->calendar->splittime('000000',False),0,$event->participants);
|
echo $phpgw->calendar->timematrix($freetime,$phpgw->calendar->splittime('000000',False),0,$parts);
|
||||||
|
|
||||||
echo '</td></tr><tr><td>';
|
echo '</td></tr><tr><td>';
|
||||||
|
|
||||||
@ -49,6 +54,7 @@
|
|||||||
|
|
||||||
echo '</td></tr><td align="center"><tr>';
|
echo '</td></tr><td align="center"><tr>';
|
||||||
|
|
||||||
|
$phpgw->calendar->fetch_event($id);
|
||||||
echo $phpgw->calendar->get_response();
|
echo $phpgw->calendar->get_response();
|
||||||
|
|
||||||
$phpgw_info['server']['app_inc'] = $tmp_app_inc;
|
$phpgw_info['server']['app_inc'] = $tmp_app_inc;
|
||||||
|
Loading…
Reference in New Issue
Block a user