forked from extern/egroupware
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))
|
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(
|
$var[] = Array(
|
||||||
|
Loading…
Reference in New Issue
Block a user