Ver código fonte

Update search.php

tags/6.5.6
叙述、别离 5 dias atrás
pai
commit
bfc3fa8abe
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/apps/search.php

+ 1
- 1
src/apps/search.php Ver arquivo

@@ -57,7 +57,7 @@ $typeid = intval($typeid);
$keyword = addslashes(cn_substr($keyword, 30));
$typeid = intval($typeid);
//判断关键词是否输入违禁词,在后台-系统设置:禁用关键词添加
if ($cfg_notallowstr != '' && preg_match("#".$cfg_notallowstr."#i", $keyword)) {
if ($cfg_notallowstr === '' || preg_match("#".$cfg_notallowstr."#i", $keyword)) {
ShowMsg("您输入的关键词存在违禁,请重新填写", "-1");
exit();
}


Carregando…
Cancelar
Salvar