From 6e24bbca9981d469af11e2b678e433055d58550e Mon Sep 17 00:00:00 2001 From: lifei6671 Date: Wed, 29 Aug 2018 10:11:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E6=99=AE=E9=80=9A?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=97=A0=E6=B3=95=E4=B8=8B=E8=BD=BD=E6=96=87?= =?UTF-8?q?=E7=AB=A0=E9=99=84=E4=BB=B6=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- controllers/BlogController.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/BlogController.go b/controllers/BlogController.go index 5b3cb7b7..298d0354 100644 --- a/controllers/BlogController.go +++ b/controllers/BlogController.go @@ -617,8 +617,8 @@ func (c *BlogController) Download() { } } blogReadSession := fmt.Sprintf("blog:read:%d",blogId) - - if (c.Member != nil && !c.Member.IsAdministrator()) || ( blog.BlogStatus == "password" && password != blog.Password && c.CruSession.Get(blogReadSession) == nil) { + //如果没有启动匿名访问,或者设置了访问密码 + if (c.Member != nil && !c.EnableAnonymous) || ( blog.BlogStatus == "password" && password != blog.Password && c.CruSession.Get(blogReadSession) == nil) { c.ShowErrorPage(403, "没有下载权限") }