Explorar o código

Admin URL now redirect to home page and Resolves #46

Yoginth %!s(int64=7) %!d(string=hai) anos
pai
achega
59bcb550b1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      pkg/context/auth.go

+ 1 - 1
pkg/context/auth.go

@@ -84,7 +84,7 @@ func Toggle(options *ToggleOptions) macaron.Handler {
 
 		if options.AdminRequired {
 			if !c.User.IsAdmin {
-				c.Error(403)
+				c.Redirect(setting.AppSubURL + "/")
 				return
 			}
 			c.Data["PageIsAdmin"] = true