diff --git a/Oqtane.Client/Resources/Installer/Installer.resx b/Oqtane.Client/Resources/Installer/Installer.resx
index f6b4a7d6..a06752d9 100644
--- a/Oqtane.Client/Resources/Installer/Installer.resx
+++ b/Oqtane.Client/Resources/Installer/Installer.resx
@@ -136,7 +136,7 @@
Please Enter All Required Fields. Ensure Passwords Match And Email Address Provided Is Valid.
- The Password Provided Does Not Meet The Complexity Policy For Below Reasons:
+ The Password Provided Does Not Meet The Complexity Policy. Passwords Must Be At Least 6 Characters In Length And Contain Uppercase, Lowercase, Numeric, And Punctuation Characters.
Please Register Me For Major Product Updates And Security Bulletins
diff --git a/Oqtane.Server/Managers/UserManager.cs b/Oqtane.Server/Managers/UserManager.cs
index 821e8cd8..03bff1bb 100644
--- a/Oqtane.Server/Managers/UserManager.cs
+++ b/Oqtane.Server/Managers/UserManager.cs
@@ -559,13 +559,6 @@ namespace Oqtane.Managers
{
validateResult.Succeeded = false;
validateResult.Errors.Add("Message.Password.Invalid", string.Empty);
- if (passwordResult.Errors != null)
- {
- foreach (var error in passwordResult.Errors)
- {
- validateResult.Errors.Add(error.Code, error.Description);
- }
- }
}
return validateResult;