您当前的位置:主页 > 教程合集 > DedeCMS > 网站首页DedeCMS
DedeCMS搜索会自动去掉大写字母Bug修复
发布时间:2021-02-12 08:58:00编辑:余斗阅读:(0)字号: 大 中 小
织梦搜索的时候,如果带有大写字母,会自动变成小写字母进行匹配,这样不好,需要完善下!
打开织梦文件目录:include/helpers/filter.helper.php 查找:
if(preg_match("/[^0-9a-z@#.]/",$keyword[$i]))
{
$restr .= ' ';
}
else
{
$restr .= $keyword[$i];
}
}
}
}
return $restr;
}
}
改成:
if(preg_match("/[^0-9a-zA-Z@#.]/",$keyword[$i]))
{
$restr .= ' ';
}
else
{
$restr .= $keyword[$i];
}
}
}
}
return $restr;
}
}
完成后,即可实现织梦搜索大写字母。