From f9845454cfb1a32f2be5e865c458fc8e4a41eb06 Mon Sep 17 00:00:00 2001 From: zeripath Date: Wed, 23 Oct 2019 23:26:54 +0100 Subject: [PATCH] Use AppSubUrl for more redirections (#8647) (#8652) Partial backport without changes to locale files. Fix #8461 - fix misspelling of {{AppSubUrl}} and other misspelling in template Fixes /explore and organisation redirection --- modules/context/org.go | 2 +- routers/home.go | 2 +- templates/user/auth/grant.tmpl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/context/org.go b/modules/context/org.go index 12d5dbfbf..409118979 100644 --- a/modules/context/org.go +++ b/modules/context/org.go @@ -62,7 +62,7 @@ func HandleOrgAssignment(ctx *Context, args ...bool) { // Force redirection when username is actually a user. if !org.IsOrganization() { - ctx.Redirect("/" + org.Name) + ctx.Redirect(setting.AppSubURL + "/" + org.Name) return } diff --git a/routers/home.go b/routers/home.go index dbe27bd42..79926e32f 100644 --- a/routers/home.go +++ b/routers/home.go @@ -272,7 +272,7 @@ func ExploreOrganizations(ctx *context.Context) { // ExploreCode render explore code page func ExploreCode(ctx *context.Context) { if !setting.Indexer.RepoIndexerEnabled { - ctx.Redirect("/explore", 302) + ctx.Redirect(setting.AppSubURL+"/explore", 302) return } diff --git a/templates/user/auth/grant.tmpl b/templates/user/auth/grant.tmpl index 85c507a74..7ac8f18df 100644 --- a/templates/user/auth/grant.tmpl +++ b/templates/user/auth/grant.tmpl @@ -16,7 +16,7 @@

{{.i18n.Tr "auth.authroize_redirect_notice" .ApplicationRedirectDomainHTML | Str2html}}

-
+ {{.CsrfTokenHtml}}