Friday 05 December 2003 5:14:38 am
Hi, Sorry, I mean 3.2-4 release or 3.3 beta2, the fix is only available in svn. You can add following line in kernel/classes/datatypes/ezuser/ezldapuser.php
------------------------------------------------
if( !$password )
{
$password = crypt( microtime() );
}
-----------------------------------------------
before
// authenticated user
if ( !@ldap_bind( $ds, $info[0]['dn'], $password ) )
{
return false; }
|