fix #17876 Signed-off-by: a1012112796 <1012112796@qq.com>
This commit is contained in:
		
							parent
							
								
									d29a0fc3be
								
							
						
					
					
						commit
						9a8532d928
					
				
					 2 changed files with 1 additions and 4 deletions
				
			
		|  | @ -77,9 +77,6 @@ var ( | |||
| 	// ErrEmailNotActivated e-mail address has not been activated error
 | ||||
| 	ErrEmailNotActivated = errors.New("E-mail address has not been activated") | ||||
| 
 | ||||
| 	// ErrUserNameIllegal user name contains illegal characters error
 | ||||
| 	ErrUserNameIllegal = errors.New("User name contains illegal characters") | ||||
| 
 | ||||
| 	// ErrLoginSourceNotActived login source is not actived error
 | ||||
| 	ErrLoginSourceNotActived = errors.New("Login source is not actived") | ||||
| 
 | ||||
|  |  | |||
|  | @ -65,7 +65,7 @@ func SettingsPost(ctx *context.Context) { | |||
| 			ctx.RenderWithErr(ctx.Tr("form.username_been_taken"), tplSettingsOptions, &form) | ||||
| 			return | ||||
| 		} else if err = models.ChangeUserName(org, form.Name); err != nil { | ||||
| 			if err == models.ErrUserNameIllegal { | ||||
| 			if models.IsErrNameReserved(err) || models.IsErrNamePatternNotAllowed(err) { | ||||
| 				ctx.Data["OrgName"] = true | ||||
| 				ctx.RenderWithErr(ctx.Tr("form.illegal_username"), tplSettingsOptions, &form) | ||||
| 			} else { | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue