[BugFix]主题被关闭之后,主题发起人仍可以编辑主题
这个POST用于测试并修正主题被关闭后,普通用户可以继续编辑的问题by YouRDJStep One. 测试管理员是否能够编辑被关闭的主题,如果能看到此行,证明成功
Step Two. 主题发起者不能在主题被关闭后继续编辑
Clear.
问题修正过程:
问题在于编辑帖子时,对主题的关闭状态没有做判断造成的
原文件,第31行
include/editpost.inc.php
if((!$forum['ismoderator'] || !$alloweditpost) && !$isorigauthor) {
修改为
if((!$forum['ismoderator'] || !$alloweditpost) && (!$isorigauthor || $thread)) {
修正过程结束. 这乍还有美元符号啊!if((!$forum['ismoderator'] || !$alloweditpost) && (!$isorigauthor || $thread)) {
页:
[1]