- UID
- 680705
- 积分
- 0
- 金币
- 383
- 精华
- 0
- 威望
- 0
- 贡献
- 0
- 阅读权限
- 220
- 注册时间
- 2009-10-2
- 最后登录
- 2026-5-3
- 在线时间
- 0 小时
热心网友
- 金币
- 383
- 阅读权限
- 220
- 精华
- 0
- 威望
- 0
- 贡献
- 0
- 在线时间
- 0 小时
- 注册时间
- 2009-10-2
|
首先找到文件
打开\source\include\spacecp\spacecp_follow.php文件
找到如下代码
- $special = intval($_GET['special']) ? intval($_GET['special']) : 0;
然后直接替换为
- $special=0;
- if(in_array($_G['groupid'], array(4,5,6,7,8,9,10,20))) {
- showmessage('您所在会员组不允许关注他人');
- }else
- {
- $special = intval($_GET['special']) ? intval($_GET['special']) : 0;
- }
其中 array(4,5,6,7,8,9,10,20)就是你所有需要禁止收听功能的用户组ID,这个大家根据自己论坛的配置依次填写即可。
这样问题完美解决了。
广告党就无法再利用这Bug发广告了!找到, 文件, spacecp, 禁止, 收听 |
|