From 56c1339fbed41467b101da0398ef64d343080525 Mon Sep 17 00:00:00 2001 From: zhouxudong Date: Fri, 15 Jul 2022 03:36:57 +0000 Subject: [PATCH] * Fix bug. --- module/task/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/task/control.php b/module/task/control.php index 0aaa687020..4f4de08e01 100755 --- a/module/task/control.php +++ b/module/task/control.php @@ -801,7 +801,7 @@ class task extends control if(($this->app->tab == 'execution' or ($this->config->vision == 'lite' and $this->app->tab == 'project')) and $execution->type == 'kanban') { $rdSearchValue = $this->session->rdSearchValue ? $this->session->rdSearchValue : ''; - $kanbanData = $this->loadModel('kanban')->getRDKanban($task->execution, $execLaneType, 'id_desc', 0, $execGroup, $rdSearchValue); + $kanbanData = $this->loadModel('kanban')->getRDKanban($task->execution, $execLaneType, 'id_desc', 0, $execGroupBy, $rdSearchValue); $kanbanData = json_encode($kanbanData); return print(js::closeModal('parent.parent', '', "parent.parent.updateKanban($kanbanData)"));