mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
fixed backend returning all events for freebusy query with just email addresses
This commit is contained in:
parent
7ff829cdfd
commit
2d503a7089
@ -464,9 +464,9 @@ class calendar_so
|
||||
{
|
||||
$users_by_type['u'][] = (int) $user;
|
||||
}
|
||||
elseif (is_numeric(substr($user,1)))
|
||||
else
|
||||
{
|
||||
$users_by_type[$user[0]][] = (int) substr($user,1);
|
||||
$users_by_type[$user[0]][] = substr($user,1);
|
||||
}
|
||||
}
|
||||
$to_or = $user_or = array();
|
||||
|
Loading…
Reference in New Issue
Block a user