Discuz版块设置只有版主和发贴人能回复

来自:互联网
时间:2018-08-27
阅读:

修改post.php 这个文件,在59行处

if($thread['readperm'] && $thread['readperm'] > $readaccess && !$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) { 
   showmessage('thread_nopermission', NULL, 'NOPERM'); 
  }

下面添加下面代码即可。

//只有版主和发贴人自己能回复 
if(($forum['fid']==42) && ($thread['authorid']!=$discuz_uid) && !$forum['ismoderator']  ) 
{ 
         showmessage('只有版主和发贴人才能回复', NULL, 'NOPERM'); 
}
返回顶部
顶部