mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	fix #1987
This commit is contained in:
		@@ -164,6 +164,7 @@ activate_account = Please activate your account
 | 
			
		||||
activate_email = Verify your e-mail address
 | 
			
		||||
reset_password = Reset your password
 | 
			
		||||
register_success = Register success, Welcome
 | 
			
		||||
register_notify = Welcome on board
 | 
			
		||||
 | 
			
		||||
[modal]
 | 
			
		||||
yes = Yes
 | 
			
		||||
 
 | 
			
		||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -85,6 +85,12 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) {
 | 
			
		||||
		}
 | 
			
		||||
		repo.Description = form.Description
 | 
			
		||||
		repo.Website = form.Website
 | 
			
		||||
 | 
			
		||||
		// Visibility of forked repository is forced sync with base repository.
 | 
			
		||||
		if repo.IsFork {
 | 
			
		||||
			form.Private = repo.BaseRepo.IsPrivate
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		visibilityChanged := repo.IsPrivate != form.Private
 | 
			
		||||
		repo.IsPrivate = form.Private
 | 
			
		||||
		if err := models.UpdateRepository(repo, visibilityChanged); err != nil {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user