Removed escaping, add sometimes required, add encrypt ldap password

This commit is contained in:
Wahlstedt, Walter
2015-11-17 13:49:59 -05:00
parent ac44140d83
commit e031239cf0
3 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -1118,7 +1118,7 @@ class UsersController extends AdminController {
$ldap_version = Setting::getSettings()->ldap_version;
$url = Setting::getSettings()->ldap_server;
$username = Setting::getSettings()->ldap_uname;
$password = Setting::getSettings()->ldap_pword;
$password = Crypt::decrypt(Setting::getSettings()->ldap_pword);
$base_dn = Setting::getSettings()->ldap_basedn;
$filter = Setting::getSettings()->ldap_filter;