Actions
Bug #95599
closedPassword recovery explanation lacks the minimum length settings
Status:
Closed
Priority:
Should have
Assignee:
Category:
felogin
Target version:
Start date:
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Template PasswordRecovery/ShowChangePassword.html
makes use of settings.newPasswordMinLength
but this setting does not exist anymore.
Reason is a refactoring during #84262 where that setting got refactored as a validator only:
passwordValidators { 10 = TYPO3\CMS\Extbase\Validation\Validator\NotEmptyValidator 20 { className = TYPO3\CMS\Extbase\Validation\Validator\StringLengthValidator options { minimum = {$styles.content.loginform.newPasswordMinLength} } } }
I suspect this may be related to former versions of TYPO3 as well.
Actions