mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
Remove a problematic non-breaking space. (RT-66491)
This commit is contained in:
parent
10400e9052
commit
059b72958b
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ class LSattr_ldap_password extends LSattr_ldap {
|
|||
$encode = $this -> getConfig('ldap_options.encode', 'md5crypt', 'string');
|
||||
$encode_function = $this -> getConfig('ldap_options.encode_function');
|
||||
if ($encode_function || $encode == 'function') {
|
||||
if ( (!$encode_function) || (!is_callable($encode_function)) ) {
|
||||
if ( (!$encode_function) || (!is_callable($encode_function)) ) {
|
||||
$encode = 'clear';
|
||||
$encode_function = null;
|
||||
LSerror :: addErrorCode('LSattr_ldap_password_02', ($encode_function?$encode_function:__('undefined')));
|
||||
|
|
Loading…
Reference in a new issue