原作:dzd999
升级数据库:
- ALTER TABLE `cdb_forums` ADD `allowhide` VARCHAR(1) DEFAULT '1' ;
复制代码
在admin\forums.php
找到:
- showsetting('forums_edit_imgcode', 'allowimgcodenew', $forum['allowimgcode'], 'radio');
复制代码
下面加入:
- showsetting('forums_edit_hidecode', 'allowhidenew', $forum['allowhide'], 'radio');
复制代码
再找:
- allowimgcode='$allowimgcodenew',
复制代码
后面加入:
- allowhide='$allowhidenew',
复制代码
修改post.php
找到:
- if(!$bbcodeoff && !$allowhidecode && preg_match("/\[hide=?\d*\].+?\[\/hide\]/is", $message)) {
- showmessage('post_hide_nopermission');
- }
复制代码
下面加:
- if($forum['allowhide'] == '0' && preg_match("/\[hide=?\d*\].+?\[\/hide\]/is", $message)) {
- showmessage('post_forum_hide_nopermission');
- }
复制代码
admincp.lang.php语言包
找到:
- 'forums_edit_imgcode_comment' => '允许 [img] 代码作者将可以在帖子插入其他网站的图片并显示',
复制代码
下面加:
- 'forums_edit_hidecode' => '允许使用 [hide] 代码:',
- 'forums_edit_hidecode_comment' => '允许 [hide] 代码作者可以在帖子中使用隐藏功能',
复制代码
messages.lang.php语言包
找到;
- 'post_forum_newreply_nopermission' => '对不起,本论坛只有特定用户组可以回复,请返回。',
复制代码
下面加;
- 'post_forum_hide_nopermission' => '对不起,本板块禁止使用 [hide] 代码,请返回修改。',
复制代码
|