forked from extern/egroupware
fix for bug #15: Ressource time slots not checked in freetime search
This commit is contained in:
parent
3bf6bb24ed
commit
b2d586add6
@ -864,7 +864,7 @@ class uiforms extends uical
|
||||
{
|
||||
if ($app == 'accounts')
|
||||
{
|
||||
$content['participants'] += $ids;
|
||||
$content['participants'] += (array)$ids;
|
||||
}
|
||||
elseif ($ids)
|
||||
{
|
||||
@ -872,7 +872,7 @@ class uiforms extends uical
|
||||
{
|
||||
if ($data['app'] == $app) break;
|
||||
}
|
||||
foreach($ids as $id)
|
||||
foreach((array)$ids as $id)
|
||||
{
|
||||
$content['participants'][] = $type . $id;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user