From b232bd54fef71d20e0b0457c2a9a3ab164f95235 Mon Sep 17 00:00:00 2001 From: Wenrui LI Date: Tue, 22 Mar 2022 10:38:58 +0800 Subject: [PATCH] * filter out deleted lanes, task #51311, bug #20972. --- module/task/model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/task/model.php b/module/task/model.php index 309504218c..57a97f3e52 100644 --- a/module/task/model.php +++ b/module/task/model.php @@ -2152,6 +2152,7 @@ class taskModel extends model ->from(TABLE_KANBANCELL)->alias('t1') ->leftJoin(TABLE_KANBANLANE)->alias('t2')->on('t1.lane = t2.id') ->where('t1.kanban')->eq($executionID) + ->andWhere('deleted')->eq(0) ->andWhere("($cardsWhere)") ->fetchAll();