Skip to content

Commit 48d3e19

Browse files
author
Olga Kopylova
committed
MAGETWO-33443: Password strength validator on installation wizard works in over-exacting mode
- fixed required length of the password
1 parent 7ba8da8 commit 48d3e19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup/view/magento/setup/create-admin-account.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $passwordWizard = sprintf(
1515
</div>
1616
<p>%s</p>',
1717
'Password Strength:',
18-
'Enter 7 or more characters. For a strong password, use a mix of numbers, symbols, and uppercase and lowercase letters (Ex: BuyIt$54).'
18+
'Enter 6 or more characters. For a strong password, use a mix of numbers, symbols, and uppercase and lowercase letters (Ex: BuyIt$54).'
1919
);
2020
?>
2121

@@ -141,7 +141,7 @@ $passwordWizard = sprintf(
141141
>
142142
<div class="error-container">
143143
<span ng-show="account.adminPassword.$error.checkPassword">
144-
Please enter a mix of at least 7 alpha-numeric characters.
144+
Please enter a mix of at least 6 alpha-numeric characters.
145145
</span>
146146
<span ng-show="account.adminPassword.$error.required">
147147
Please enter your new password.

0 commit comments

Comments
 (0)