Minor optimization in view_event().

This commit is contained in:
skeeter 2001-06-17 16:41:00 +00:00
parent 5a3e19e6ab
commit 77b9bfb4ee

View File

@ -1573,18 +1573,22 @@ class calendar extends calendar_
); );
reset($event->participants); reset($event->participants);
$participating = False; if($event->participants[$this->owner])
$participate = False;
while(list($part,$status) = each($event->participants))
{ {
if($part == $this->owner) $participating = True;
{ }
$participating = True; else
} {
if($part == $phpgw_info['user']['account_id']) $participating = False;
{ }
$participate = True;
} if($event->participants[$phpgw_info['user']['account_id']])
{
$participate = True;
}
else
{
$participate = False;
} }
$p = CreateObject('phpgwapi.Template',$this->template_dir); $p = CreateObject('phpgwapi.Template',$this->template_dir);