当前位置:首页>文章>discuz 把阅读权限提示的数字改为用户组

discuz 把阅读权限提示的数字改为用户组

2017-04-10 2155 文章
默认是「抱歉,本帖要求阅读权限高于 20 才能浏览」 修改为「抱歉,本帖要求阅读权限高于 注册用户 才能浏览」 根目录打开 source\module\forum\forum_viewthread.php 文件 查找(~160)
  1. showmessage('thread_nopermission', NULL, array('readperm' => $_G['forum_thread']['readperm']), array('login' => 1));
替换
  1. foreach($_G['cache']['usergroups'] as $v){
  2. if($v['readaccess']== $_G['forum_thread']['readperm']) {
  3. $readperm_name = $v['grouptitle'];break;
  4. }
  5. }
  6. showmessage('thread_nopermission', NULL, array('readperm' => $readperm_name), array('login' => 1));
完毕!            

评论 (0)