From 192b965619a03ff04bfcceb741b5c96ca9de6379 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Mon, 30 Dec 2024 09:19:33 +0000 Subject: [PATCH] * [bug#58776,done,0.2h] fix bug. --- 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 45bbe05c4f..d8b52ac073 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -3040,7 +3040,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')) ? $this->lang->execution->$status : $this->lang->execution->statusList[$status]) . $executionConcept; $this->view->fileName = !empty($fileName) ? $fileName : $executionConcept; $this->display(); }