bugfix LDAP filter

This commit is contained in:
OpenXE 2024-04-22 09:58:16 +02:00
parent 5c1a5d04df
commit b3b516d0ad

View File

@ -850,8 +850,7 @@ class Acl
// verbinden zum ldap server // verbinden zum ldap server
$ds = ldap_connect($this->app->erp->Firmendaten("ldap_host")); $ds = ldap_connect($this->app->erp->Firmendaten("ldap_host"));
$suche = $this->app->erp->Firmendaten("ldap_searchbase"); $suche = $this->app->erp->Firmendaten("ldap_searchbase");
$filter = $this->app->erp->Firmendaten("ldap_filter"); $filter = str_replace('{USER}',$username,$this->app->erp->Firmendaten("ldap_filter"));
//$bind_name = str_replace('%user%',$username,$this->app->erp->Firmendaten("ldap_bindname"));
$bind_name = str_replace('{USER}',$username,$this->app->erp->Firmendaten("ldap_bindname")); $bind_name = str_replace('{USER}',$username,$this->app->erp->Firmendaten("ldap_bindname"));
if ($ds) { if ($ds) {