Discuz! 禁止新会员使用广播关注收听功能

someone2024-06-21未分类103

1、打开\source\include\spacecp\spacecp_follow.php文件
搜索

 $special = intval($_GET['special']) ? intval($_GET['special']) : 0;

修改为

        $special=0;
        if(in_array($_G['groupid'], array(12,20,32))) {
                    showmessage('follow_not_follow_newbie');
        }else
        {
                    $special = intval($_GET['special']) ? intval($_GET['special']) : 0;
        }



2、打开source\language\lang_message.php文件
搜索

  'follow_not_follow_self' => '不能关注自己',

下插入

  'follow_not_follow_newbie' => '积分少于5的用户暂无关注权限',





说明:


array(12,20,32)

为本站禁止用户组


'follow_not_follow_newbie'

为本站赋值


发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。