Merge pull request #2277 from umbraco/temp-U4-10589

U4-10589 Login should be sanitized and/or cause validation errors if trying to save with
This commit is contained in:
Claus
2017-11-08 12:07:34 +01:00
committed by GitHub
3 changed files with 7 additions and 3 deletions

View File

@@ -243,7 +243,7 @@
return item.alias === "_umb_membergroup";
});
saveModel.email = propEmail.value;
saveModel.username = propLogin.value;
saveModel.username = propLogin.value.trim();
saveModel.password = this.formatChangePasswordModel(propPass.value);