* [MOD] UI tweaks on login and password reset views

* [MOD] Improved password fields behavior. New strength level meter, copy to clipboard and password viewer doesn't show up the RSA encrypted text.
This commit is contained in:
nuxsmin
2018-03-29 19:17:54 +02:00
parent d7c8daf0ff
commit 9553a90f88
27 changed files with 249 additions and 228 deletions

View File

@@ -78,7 +78,10 @@ class ConfigLdapController extends SimpleControllerBase
$configData->setLdapDefaultGroup($ldapDefaultGroup);
$configData->setLdapDefaultProfile($ldapDefaultProfile);
$configData->setLdapBindUser($ldapParams->getBindDn());
$configData->setLdapBindPass($ldapParams->getBindPass());
if ($ldapParams->getBindPass() !== '***') {
$configData->setLdapBindPass($ldapParams->getBindPass());
}
if ($configData->isLdapEnabled() === false) {
$eventMessage->addDescription(__u('LDAP habiltado'));