From fe41df24d61a34ee595d5c7ed9a6ce421ab5d96e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=99=E8=BF=B0=E3=80=81=E5=88=AB=E7=A6=BB?= <93301500+xushubieli@users.noreply.github.com> Date: Wed, 26 Mar 2025 09:49:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=A1=A8=E5=8D=95=E9=99=90?= =?UTF-8?q?=E5=88=B6=E9=98=B2=E6=AD=A2=E5=9E=83=E5=9C=BE=E7=95=99=E8=A8=80?= =?UTF-8?q?=EF=BC=8C=E8=B0=83=E6=95=B4=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/diy.php | 10 +++++----- src/apps/search.php | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/apps/diy.php b/src/apps/diy.php index c56b6e22..63ecf5b6 100755 --- a/src/apps/diy.php +++ b/src/apps/diy.php @@ -67,19 +67,19 @@ if ($action == 'post') { } } //判断$name是否输入中文包括繁体则提交失败,$name改成您表单字段标识,恢复注释代码使用 - /*if (!preg_match('/^[\x{4e00}-\x{9fa5}]+$/u', $name)) { - showMsg('您输入信息不符合,请重新填写', '-1'); + /*if ($name != '' && preg_match("#".$cfg_notallowstr."#i", $name)) { + ShowMsg("您输入的信息存在违禁,请重新填写", "-1"); exit(); }*/ //判断$message是否大于70字符则提交失败,$message改成您表单字段标识,恢复注释代码使用 - /*if (mb_strlen($message) > 70) { - showmsg('您输入文字太多了,请重新填写', '-1'); + /*if ($message != '' && strlen($message) > 70) { + showmsg('您输入的信息太多了,请重新填写', '-1'); exit(); }*/ //获取表单提交的链接、时间、ip,字段标识默认为link、date、ip,前台表单可以不用出现该输入框,但是biz_fields和biz_fieldshash的值要最新,下面是重复提交表单限制,恢复注释代码使用 /*$result = $dsql->getOne("SELECT count(*) AS dd FROM `{$diy->table}` WHERE ip='$ip' AND date_format(date,'Y-m-d') = date_format(now(),'Y-m-d')"); if ($result['dd'] >= 3) { - showmsg('您重复提交太多了,请等待平台联系', '-1'); + showmsg('您已重复提交太多次了,请等待平台联系', '-1'); exit(); }*/ $query = "INSERT INTO `{$diy->table}` (`id`, `ifcheck` $addvar) VALUES (NULL, 0 $addvalue); "; diff --git a/src/apps/search.php b/src/apps/search.php index 5ae5c4a8..4bb81ac9 100755 --- a/src/apps/search.php +++ b/src/apps/search.php @@ -57,11 +57,11 @@ $typeid = intval($typeid); $keyword = addslashes(cn_substr($keyword, 30)); $typeid = intval($typeid); if ($keyword != '' && ($cfg_notallowstr != '' && preg_match("#".$cfg_notallowstr."#i", $keyword))) { - ShowMsg("关键词中存在非法文档,被系统禁止", "-1"); + ShowMsg("您输入的关键词存在违禁,请重新填写", "-1"); exit(); } if (($keyword != '' && strlen($keyword) < 2) && empty($typeid)) { - ShowMsg('您输入关键词太少了,请重新填写', '-1'); + ShowMsg('您输入的关键词太少了,请重新填写', '-1'); exit(); } //检查搜索间隔时间