返回列表 回复 发帖

[Dz5.5] [插件] 游客可以看见附件,点下载时提示需要注册

viewthread.php中将
  1. $allowgetattach = !empty($forum['allowgetattach']) || ($allowgetattach && !$forum['getattachperm']) || forumperm($forum['getattachperm']);
复制代码
改为
  1. $allowgetattach = !$discuz_uid || !empty($forum['allowgetattach']) || ($allowgetattach && !$forum['getattachperm']) || forumperm($forum['getattachperm']);
复制代码
即可.
返回列表