From 475e70d87bebb2f2e401c376dd40158707b23594 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: Mon, 29 May 2023 11:29:05 +0800 Subject: [PATCH] Update arclist.lib.php --- src/system/taglib/arclist.lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/taglib/arclist.lib.php b/src/system/taglib/arclist.lib.php index 553acea8..b737aa14 100755 --- a/src/system/taglib/arclist.lib.php +++ b/src/system/taglib/arclist.lib.php @@ -215,12 +215,12 @@ function lib_arclistDone (&$refObj, &$ctag, $typeid=0, $row=10, $col=1, $titlele if (!empty($channelid)) $orwheres[] = " And arc.channel = '$channelid' "; if (!empty($noflag)) { if (!preg_match('#,#', $noflag)) { - $orwheres[] = " FIND_IN_SET('$noflag', arc.flag)<1 "; + $orwheres[] = " FIND_IN_SET('$noflag', arc.flag) < 1 "; } else { $noflags = explode(',', $noflag); foreach ($noflags as $noflag) { if (trim($noflag) == '') continue; - $orwheres[] = " FIND_IN_SET('$noflag', arc.flag)<1 "; + $orwheres[] = " FIND_IN_SET('$noflag', arc.flag) < 1 "; } } }