mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Needed to intval() the around line 2923.
This commit is contained in:
parent
827e487c43
commit
038b4428fc
@ -2920,7 +2920,7 @@
|
||||
{
|
||||
if(intval($id) != intval($this->bo->owner))
|
||||
{
|
||||
$str .= ' <option value="' . $id . '"'.($event['participants'][$id]?' selected':'').'>('.$GLOBALS['phpgw']->accounts->get_type($id).') '.$name.'</option>'."\n";
|
||||
$str .= ' <option value="' . intval($id) . '"'.($event['participants'][intval($id)]?' selected':'').'>('.$GLOBALS['phpgw']->accounts->get_type(intval($id)).') '.$name.'</option>'."\n";
|
||||
}
|
||||
}
|
||||
$var[] = Array(
|
||||
|
Loading…
Reference in New Issue
Block a user