début amélioration LDAP

This commit is contained in:
Regis Houssin 2006-06-12 12:26:39 +00:00
parent 9896127641
commit 97a13694f3

View File

@ -50,13 +50,13 @@ function dolibarr_ldap_connect()
else else
{ {
// ex serveur: localhost // ex serveur: localhost
// ex port: 329 // ex port: 389
$ldapconnect = ldap_connect($conf->global->LDAP_SERVER_HOST,$conf->global->LDAP_SERVER_PORT); $ldapconnect = ldap_connect($conf->global->LDAP_SERVER_HOST,$conf->global->LDAP_SERVER_PORT);
} }
if ($ldapconnect) if ($ldapconnect)
{ {
ldap_set_option($ldapconnect, $conf->global->LDAP_OPT_PROTOCOL_VERSION, $conf->global->LDAP_SERVER_PROTOCOLVERSION); ldap_set_option($ldapconnect, LDAP_OPT_PROTOCOL_VERSION, $conf->global->LDAP_SERVER_PROTOCOLVERSION);
} }
return $ldapconnect; return $ldapconnect;
@ -103,7 +103,7 @@ function dolibarr_ldap_getversion($ds)
$version = 0; $version = 0;
ldap_get_option($ds, $conf->global->LDAP_OPT_PROTOCOL_VERSION, $version); ldap_get_option($ds, LDAP_OPT_PROTOCOL_VERSION, $version);
return $version; return $version;
} }
@ -118,7 +118,7 @@ function dolibarr_ldap_setversion($ds,$version)
{ {
global $conf; global $conf;
$ldapsetversion = ldap_set_option($ds, $conf->global->LDAP_OPT_PROTOCOL_VERSION, $version); $ldapsetversion = ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, $version);
return $ldapsetversion; return $ldapsetversion;
} }