涉及文件: editpost.php, newthread.php
修改方式: 替换下载包内同名文件或按照以下代码修正
修正方法:
打开editpost.php文件
查找56行左右:
:
$content = isset($_INPUT['post']) ? $_INPUT['post'] : $this->lib->parser->unconvert($this->getpost['pagetext'], $this->lib->forum['allowbbcode'], $this->lib->forum['allowhtml'], $bbuserinfo['usewysiwyg']);
替换为:
:
$content = isset($_INPUT['post']) ? $_INPUT['post'] : $this->lib->parser->unconvert(stripslashes($this->getpost['pagetext']), $this->lib->forum['allowbbcode'], $this->lib->forum['allowhtml'], $bbuserinfo['usewysiwyg']);
打开newthread.php文件
查找40行左右:
:
$content = $this->lib->check_multi_quote();
替换为:
:
$content = stripslashes($this->lib->check_multi_quote());