Merge remote branch 'gitorious/1.0.x' into 1.0.x

This commit is contained in:
Evan Prodromou 2010-09-22 10:35:29 -04:00
commit 829a017a5d
1 changed files with 6 additions and 0 deletions

View File

@ -144,6 +144,12 @@ class LdapCommon
if(!$entry){
return false;
}else{
if(empty($password)) {
//NET_LDAP2 will do an anonymous bind if bindpw is not set / empty string
//which causes all login attempts that involve a blank password to appear
//to succeed. Which is obviously not good.
return false;
}
$config = $this->get_ldap_config();
$config['binddn']=$entry->dn();
$config['bindpw']=$password;