From a8e857cd32fbfba23f8d6a6b5a91b923c65867bf Mon Sep 17 00:00:00 2001 From: sunguangming Date: Thu, 3 Apr 2025 07:40:05 +0000 Subject: [PATCH] * [misc] fix bug. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index fa538b532e..2a61aa08eb 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -3680,7 +3680,7 @@ class executionModel extends model foreach($matches[0] as $matchIndex => $match) { $subQuery = $this->dao->select('1')->from(TABLE_TASKTEAM) - ->where('task')->eq('t1.id') + ->where('task = t1.id') ->andWhere('account' . $matches[1][$matchIndex]) ->get();