管理员
UID98123
好友
回帖0
主题
精华
积分35657
阅读权限255
注册时间2004-7-13
最后登录1970-1-1
在线时间 小时
|
这个POST用于测试并修正主题被关闭后,普通用户可以继续编辑的问题 by YouRDJ
Step One. 测试管理员是否能够编辑被关闭的主题,如果能看到此行,证明成功
Step Two. 主题发起者不能在主题被关闭后继续编辑
Clear.
问题修正过程:
问题在于编辑帖子时,对主题的关闭状态没有做判断造成的
原文件,第31行
include/editpost.inc.php
- if((!$forum['ismoderator'] || !$alloweditpost) && !$isorigauthor) {
复制代码
修改为
- if((!$forum['ismoderator'] || !$alloweditpost) && (!$isorigauthor || $thread[closed])) {
复制代码
修正过程结束. |
|