From 5ad98df2ca473e9004c492c3a90d20c4b10b5c42 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Tue, 14 Jun 2022 15:17:57 +0800 Subject: [PATCH] * Fix bug #23648. --- module/execution/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/control.php b/module/execution/control.php index f55311f7db..d5d8c36fcd 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -3846,7 +3846,7 @@ class execution extends control if($from == 'execution') $this->session->set('taskSearchValue', $searchValue); if($from == 'RD') $this->session->set('rdSearchValue', $searchValue); - if($lastEditedTime > $enterTime or $groupBy != 'default' or !empty($searchValue)) + if(strtotime($lastEditedTime) < 0 or $lastEditedTime > $enterTime or $groupBy != 'default' or !empty($searchValue)) { $kanbanGroup = $from == 'execution' ? $this->loadModel('kanban')->getExecutionKanban($executionID, $browseType, $groupBy, $searchValue) : $this->loadModel('kanban')->getRDKanban($executionID, $browseType, 'id_asc', 0, $groupBy, $searchValue); return print(json_encode($kanbanGroup));