From f9d7ec685789665d47ad6250efecbee2ac0eefc0 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Tue, 11 Oct 2022 09:37:06 +0800 Subject: [PATCH] * Fix code error. --- module/kanban/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/kanban/control.php b/module/kanban/control.php index 8f34642c83..3e2f40556a 100644 --- a/module/kanban/control.php +++ b/module/kanban/control.php @@ -1271,7 +1271,7 @@ class kanban extends control foreach($productPairs as $id => $name) { - if(isset($excludeProducts[$id])) unset($productPairs[$id]); + if(isset($kanbanProducts[$id])) unset($productPairs[$id]); } $this->view->products = array($this->lang->kanban->allProducts) + $productPairs;