打开source/admincp/admincp_forums.php 文件查找:
[mw_shl_code=html,false]showsetting('forums_edit_basic_description', 'descriptionnew', htmlspecialchars_decode(html2bbcode($forum['description'])), 'textarea');[/mw_shl_code]
替換为
[mw_shl_code=html,false]showsetting('forums_edit_basic_description', 'descriptionnew', htmlspecialchars_decode($forum['description']), 'textarea');[/mw_shl_code]
再查找:
[mw_shl_code=html,false]showsetting('forums_edit_basic_rules', 'rulesnew', htmlspecialchars_decode(html2bbcode($forum['rules'])), 'textarea');[/mw_shl_code]
替换为:
[mw_shl_code=html,false]showsetting('forums_edit_basic_rules', 'rulesnew', htmlspecialchars_decode($forum['rules']), 'textarea');[/mw_shl_code]
在查找:
[mw_shl_code=html,false]$descriptionnew = preg_replace('/on(mousewheel|mouseover|click|load|onload|submit|focus|blur)="[^"]*"/i', '', discuzcode($_GET['descriptionnew'], 1, 0, 0, 0, 1, 1, 0, 0, 1));[/mw_shl_code]
一共有两处相同的代码替換为:
[mw_shl_code=html,false]$descriptionnew = addslashes(dstripslashes($_GET['descriptionnew']));[/mw_shl_code]
在查找:
[mw_shl_code=html,false]$rulesnew = preg_replace('/on(mousewheel|mouseover|click|load|onload|submit|focus|blur)="[^"]*"/i', '', discuzcode($_GET['rulesnew'], 1, 0, 0, 0, 1, 1, 0, 0, 1));[/mw_shl_code]
替换为:
[mw_shl_code=html,false]$rulesnew = addslashes(dstripslashes($_GET['rulesnew']));[/mw_shl_code]
您要添加 html 为法时
要將有这些 " " 符号去掉不然会沒有效果
如:
[mw_shl_code=text,false]<font color="ff0000">大家好</font>[/mw_shl_code]
替换为:
[mw_shl_code=text,false]<font color=ff0000>大家好</font>[/mw_shl_code]
视频代码:
[mw_shl_code=html,false]<embed src=视频路径 width=360 height=600></embed>[/mw_shl_code]
|