mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
automatically adding brackets around the ldap-search-filter, if the admin forgets it
This commit is contained in:
parent
6211b1457d
commit
e065856c7e
@ -148,3 +148,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add bracket around the ldap_search_filter, if admin forgot it
|
||||||
|
*
|
||||||
|
* @param array $settings
|
||||||
|
*/
|
||||||
|
function ldap_search_filter(&$settings)
|
||||||
|
{
|
||||||
|
$filter =& $settings['ldap_search_filter'];
|
||||||
|
|
||||||
|
if ($filter && $filter{0} != '(') $filter = '('.$filter.')';
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user