角度 发表于 2009-10-12 13:12:27

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

修改post.php 这个文件,在59行处
                              
1.if($thread['readperm']&& $thread['readperm'] > $readaccess &&!$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {
2.   showmessage('thread_nopermission', NULL, 'NOPERM');
3.}

的下面添加下面代码即可。

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

泡泡的小猪 发表于 2009-10-12 14:54:14

感谢分享,不知这样的作用
页: [1]
查看完整版本: Discuz版块设置只有版主和发贴人能回复的方法