aboutsummaryrefslogtreecommitdiff
path: root/routers
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-11-24 19:28:24 -0500
committerUnknwon <u@gogs.io>2015-11-24 19:28:24 -0500
commit968edb3e4450a82fb4756603057caca55e6aea5b (patch)
treeee959e933c820cf1b405049966998211e7d03bb3 /routers
parent3ca544912fe84f5a3202855037a110af40809d43 (diff)
more link fix
Diffstat (limited to 'routers')
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/org/setting.go b/routers/org/setting.go
index bd9ab13b..d8289174 100644
--- a/routers/org/setting.go
+++ b/routers/org/setting.go
@@ -76,7 +76,7 @@ func SettingsPost(ctx *middleware.Context, form auth.UpdateOrgSettingForm) {
}
log.Trace("Organization setting updated: %s", org.Name)
ctx.Flash.Success(ctx.Tr("org.settings.update_setting_success"))
- ctx.Redirect(org.HomeLink() + "/settings")
+ ctx.Redirect(ctx.Org.OrgLink + "/settings")
}
func SettingsAvatar(ctx *middleware.Context, form auth.UploadAvatarForm) {
@@ -108,7 +108,7 @@ func SettingsDelete(ctx *middleware.Context) {
if err := models.DeleteOrganization(org); err != nil {
if models.IsErrUserOwnRepos(err) {
ctx.Flash.Error(ctx.Tr("form.org_still_own_repo"))
- ctx.Redirect(org.HomeLink() + "/settings/delete")
+ ctx.Redirect(ctx.Org.OrgLink + "/settings/delete")
} else {
ctx.Handle(500, "DeleteOrganization", err)
}