From 793e24885b0e210c630be8a1db78e0e795c33c47 Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 31 Jul 2009 06:36:39 +0000 Subject: - Password plugin: added ldap_force_replace option (#1486014) --- plugins/password/drivers/ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/password/drivers') diff --git a/plugins/password/drivers/ldap.php b/plugins/password/drivers/ldap.php index 7e92ea525..108782624 100644 --- a/plugins/password/drivers/ldap.php +++ b/plugins/password/drivers/ldap.php @@ -54,7 +54,7 @@ function password_save($curpass, $passwd) // Writing new crypted password to LDAP $userEntry = $ldap->getEntry($userDN); if (Net_LDAP2::isError($userEntry)) {return PASSWORD_CONNECT_ERROR;} - if (!$userEntry->replace(array($rcmail->config->get('password_ldap_pwattr') => $newCryptedPassword))) {return PASSWORD_CONNECT_ERROR;} + if (!$userEntry->replace(array($rcmail->config->get('password_ldap_pwattr') => $newCryptedPassword),$rcmail->config->get('password_ldap_force_replace'))) {return PASSWORD_CONNECT_ERROR;} if (Net_LDAP2::isError($userEntry->update())) {return PASSWORD_CONNECT_ERROR;} // All done, no error -- cgit v1.2.3