From 8d6ae8d2837a79bd27bf987f696a5a6a796ddfd9 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Fri, 23 Aug 2024 09:41:33 +0800 Subject: [PATCH] * [bug#54417,done,0.2h] fix import bug error. --- module/execution/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/zen.php b/module/execution/zen.php index 5b226820a4..5c165da303 100644 --- a/module/execution/zen.php +++ b/module/execution/zen.php @@ -754,7 +754,7 @@ class executionZen extends execution if(!empty($this->config->limitTaskDate)) { - $this->task->checkEstStartedAndDeadline($executionID, $task->estStarted, $task->deadline); + $this->task->checkEstStartedAndDeadline($execution->id, (string)$task->estStarted, (string)$task->deadline); if(dao::isError()) return false; }