This commit is contained in:
Unknwon 2015-11-18 15:01:11 -05:00
Родитель d2808e38fe
Коммит 9a0902523b
3 изменённых файлов: 225 добавлений и 218 удалений

Просмотреть файл

@ -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

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -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 {