Project

General

Profile

Bug #95599

Updated by Xavier Perseguers over 2 years ago

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: 

 <pre> 
     passwordValidators { 
       10 = TYPO3\CMS\Extbase\Validation\Validator\NotEmptyValidator 
       20 { 
         className = TYPO3\CMS\Extbase\Validation\Validator\StringLengthValidator 
         options { 
           minimum = {$styles.content.loginform.newPasswordMinLength} 
         } 
       } 
     } 
 </pre> 

 I suspect this may be related to former versions of TYPO3 as well. 

Back