utf8_decode est aussi utile pour Active Directory

This commit is contained in:
Regis Houssin 2006-12-20 19:23:22 +00:00
parent 414af6acf1
commit 33b8f7231f

View File

@ -1045,8 +1045,9 @@ class Ldap
*/
function ldap_utf8_decode($string)
{
if ($this->serverType != "activedirectory") return utf8_decode($string);
else return($string);
//if ($this->serverType != "activedirectory") return utf8_decode($string);
//else return($string);
return utf8_decode($string); //utile aussi avec Active Directory - Regis
}
}