mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-23 14:28:45 +01:00
fixed backend returning all events for freebusy query with just email addresses
This commit is contained in:
parent
7cb6ba538c
commit
8b68bf388f
@ -461,9 +461,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