mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
fix:修复普通用户无法下载文章附件的问题
This commit is contained in:
parent
f3e0eb2ea2
commit
6e24bbca99
@ -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, "没有下载权限")
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user