mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
fix PHP TypeError: implode(): Argument #2 ($array) must be of type ?array, int given
This commit is contained in:
parent
77a3d0ed32
commit
f16cfd45fe
@ -819,7 +819,7 @@ class Ldap
|
||||
// only return given account_id's
|
||||
if (!empty($param['account_id']))
|
||||
{
|
||||
$filter .= '(|(uidNumber=' . implode(')(uidNumber=', $param['account_id']) . '))';
|
||||
$filter .= '(|(uidNumber=' . implode(')(uidNumber=', (array)$param['account_id']) . '))';
|
||||
}
|
||||
if (!empty($param['modified']))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user