From 494ba309d5d4d95332301b7a1cad45c41d2354fe Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Thu, 24 Aug 2023 09:47:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=BD=AC=E5=94=AE=E5=95=86?= =?UTF-8?q?=E5=93=81=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/dao/community/CommunityDao.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/common/dao/community/CommunityDao.php b/app/common/dao/community/CommunityDao.php index 1590eed8..23ca764d 100644 --- a/app/common/dao/community/CommunityDao.php +++ b/app/common/dao/community/CommunityDao.php @@ -31,8 +31,8 @@ class CommunityDao extends BaseDao { $query = Community::hasWhere('author', function($query) use ($where){ $query->when(isset($where['username']) && $where['username'] !== '', function ($query) use($where) { - $merId = Db::name('merchant')->where('mer_name', $where['username'])->value('mer_id', -1); - $query->where('uid', $merId); + $uid = Db::name('merchant')->where('mer_name', $where['username'])->value('uid', -1); + $query->where('uid', $uid); }); $query->where(true); });