Browse Source

Fix 404 after activating secondary email (backport of #10547) (#10553)

tags/v1.11.2
Andreas Shimokawa 5 years ago committed by GitHub
parent
commit
76878fd69b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      routers/user/auth.go

2
routers/user/auth.go

@ -1219,7 +1219,7 @@ func ActivateEmail(ctx *context.Context) {
ctx.Flash.Success(ctx.Tr("settings.add_email_success"))
}
ctx.Redirect(setting.AppSubURL + "/user/settings/email")
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
}
// ForgotPasswd render the forget pasword page

Loading…
Cancel
Save