打开source/admincp/admincp_forums.php 文件查找:
[HTML] ı鿴 ƴ showsetting('forums_edit_basic_description', 'descriptionnew', htmlspecialchars_decode(html2bbcode($forum['description'])), 'textarea');
替換为
[HTML] ı鿴 ƴ showsetting('forums_edit_basic_description', 'descriptionnew', htmlspecialchars_decode($forum['description']), 'textarea');
再查找:
[HTML] ı鿴 ƴ showsetting('forums_edit_basic_rules', 'rulesnew', htmlspecialchars_decode(html2bbcode($forum['rules'])), 'textarea');
替换为:
[HTML] ı鿴 ƴ showsetting('forums_edit_basic_rules', 'rulesnew', htmlspecialchars_decode($forum['rules']), 'textarea');
在查找:
[HTML] ı鿴 ƴ $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));
一共有两处相同的代码替換为:
[HTML] ı鿴 ƴ $descriptionnew = addslashes(dstripslashes($_GET['descriptionnew']));
在查找:
[HTML] ı鿴 ƴ $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));
替换为:
[HTML] ı鿴 ƴ $rulesnew = addslashes(dstripslashes($_GET['rulesnew']));
您要添加 html 为法时
要將有这些 " " 符号去掉不然会沒有效果
如:
[Plain Text] ı鿴 ƴ <font color="ff0000">大家好</font>
替换为:
[Plain Text] ı鿴 ƴ <font color=ff0000>大家好</font>
视频代码:
[HTML] ı鿴 ƴ <embed src=视频路径 width=360 height=600></embed>
|