]> source.dussan.org Git - gitea.git/commitdiff
Use AppURL for Oauth user link (#6894)
authortechknowlogick <matti@mdranta.net>
Thu, 9 May 2019 17:22:35 +0000 (13:22 -0400)
committerLauris BH <lauris@nix.lv>
Thu, 9 May 2019 17:22:35 +0000 (20:22 +0300)
* Use AppURL for Oauth user link

Fix #6843

* Update oauth.go

* Update oauth.go

routers/user/oauth.go

index f69c0047ae5e34eda4572baa717574b021651353..b85ea8125e33321d64966463da0348a8b2f3d35e 100644 (file)
@@ -259,7 +259,7 @@ func AuthorizeOAuth(ctx *context.Context, form auth.AuthorizationForm) {
        ctx.Data["Application"] = app
        ctx.Data["RedirectURI"] = form.RedirectURI
        ctx.Data["State"] = form.State
-       ctx.Data["ApplicationUserLink"] = "<a href=\"" + setting.LocalURL + app.User.LowerName + "\">@" + app.User.Name + "</a>"
+       ctx.Data["ApplicationUserLink"] = "<a href=\"" + setting.AppURL + app.User.LowerName + "\">@" + app.User.Name + "</a>"
        ctx.Data["ApplicationRedirectDomainHTML"] = "<strong>" + form.RedirectURI + "</strong>"
        // TODO document SESSION <=> FORM
        ctx.Session.Set("client_id", app.ClientID)