mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 16:33:17 +01:00
keeping the old defaults to not break existing installs
This commit is contained in:
parent
9e8fe54da3
commit
737b97566d
@ -166,13 +166,17 @@ function passwdhashes($config)
|
|||||||
{
|
{
|
||||||
$hashes['ext_crypt'] = 'ext_crypt';
|
$hashes['ext_crypt'] = 'ext_crypt';
|
||||||
}
|
}
|
||||||
|
if(@defined('CRYPT_STD_DES') && CRYPT_STD_DES == 1)
|
||||||
|
{
|
||||||
|
$hashes['crypt'] = 'crypt';
|
||||||
|
}
|
||||||
|
|
||||||
$hashes += array(
|
$hashes += array(
|
||||||
'md5' => 'md5',
|
'md5' => 'md5',
|
||||||
'plain' => 'plain',
|
'plain' => 'plain',
|
||||||
);
|
);
|
||||||
|
|
||||||
return _options_from($hashes, $config['ldap_encryption_type']);
|
return _options_from($hashes, $config['ldap_encryption_type'] ? $config['ldap_encryption_type'] : 'crypt');
|
||||||
}
|
}
|
||||||
|
|
||||||
function sql_passwdhashes($config)
|
function sql_passwdhashes($config)
|
||||||
@ -206,7 +210,7 @@ function sql_passwdhashes($config)
|
|||||||
'plain' => 'plain',
|
'plain' => 'plain',
|
||||||
);
|
);
|
||||||
|
|
||||||
return _options_from($hashes, $config['sql_encryption_type']);
|
return _options_from($hashes, $config['sql_encryption_type'] ? $config['sql_encryption_type'] : 'md5');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user