大家好,对去除 smalltext 简介 在列表页 和 搜索列表页 多余的HTML代码感兴趣的小伙伴,下面一起跟随三零脚本的小编来看看去除 smalltext 简介 在列表页 和 搜索列表页 多余的HTML代码的例子吧。
修改文件 connect.php
找到
$ylisttemp=$listtemp;
在上面加
$nottobrf=',smalltext,';//haoyl.com 修改标记
找
if($spf==0&&!strstr($emod_r[$mid]['editorf'],','.$f.','))
{
if(strstr($emod_r[$mid]['tobrf'],','.$f.','))//加br
{
$value=nl2br($value);
}
if(!strstr($emod_r[$mid]['dohtmlf'],','.$f.','))//去除html
{
$value=RepFieldtextNbsp(htmlspecialchars($value));
}
}
换
if(!strstr($nottobrf,','.$f.','))//haoyl.com 修改标记
{
if(!strstr($field['tobrf'],','.$f.','))//加br
{
$value=nl2br($value);
}
if(strstr($field['dohtmlf'],','.$f.','))//去除html
{
$value=htmlspecialchars($value);
}
}