Bug #24617 ยป 17087.diff
typo3/sysext/saltedpasswords/ext_tables.php (working copy) | ||
---|---|---|
if (tx_saltedpasswords_div::isUsageEnabled('BE')) {
|
||
$TCA['be_users']['columns']['password']['config']['eval'] = 'trim,required,tx_saltedpasswords_eval_be,password';
|
||
// prevent md5 hashing on client side via JS
|
||
$GLOBALS['TYPO3_USER_SETTINGS']['columns']['password']['eval'] = '';
|
||
$GLOBALS['TYPO3_USER_SETTINGS']['columns']['password2']['eval'] = '';
|
||
}
|
||
$GLOBALS['TYPO3_USER_SETTINGS']['columns']['password']['eval'] = 'tx_saltedpasswords_eval_be';
|
||
$GLOBALS['TYPO3_USER_SETTINGS']['columns']['password2']['eval'] = '';
|
||
?>
|