From c6fbf913c53390bab4e401433f28b0771a8c0344 Mon Sep 17 00:00:00 2001 From: wangyuting Date: Mon, 4 Aug 2025 15:53:27 +0800 Subject: [PATCH] * [#bug64485,done,0.5h,0h] Fix delayed lang error. --- 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 a531973f1e..7912807501 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -3144,7 +3144,7 @@ class execution extends control $fileName = $project->name . ' - ' . $executionConcept; } - if($status != 'bysearch') $fileName = (in_array($status, array('all', 'undone')) ? $this->lang->execution->$status : $this->lang->execution->statusList[$status]) . $executionConcept; + if($status != 'bysearch') $fileName = (in_array($status, array('all', 'undone', 'delayed')) ? $this->lang->execution->$status : $this->lang->execution->statusList[$status]) . $executionConcept; $this->view->fileName = !empty($fileName) ? $fileName : $executionConcept; $this->display(); }