소스 검색

Admin URL now redirect to home page and Resolves #46

Yoginth 7 년 전
부모
커밋
59bcb550b1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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