mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-08 06:45:10 +02:00
fix for bug #15: Ressource time slots not checked in freetime search
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user