* filter out deleted lanes, task #51311, bug #20972.

This commit is contained in:
Wenrui LI
2022-03-22 10:39:28 +08:00
parent ffae3aa899
commit b232bd54fe
+1
View File
@@ -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();