From e7958ba9704243dee8125ee8eb57f98ae00ecebe Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Tue, 5 Mar 2024 16:24:49 +0800 Subject: [PATCH] * Adjust execution export name. --- 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 e90594db66..25ea00ef89 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -2913,7 +2913,7 @@ class execution extends control $project = $this->project->getByID($this->session->project); if(!empty($project->model) and $project->model == 'waterfall') $this->lang->executionCommon = $this->lang->project->stage; - $this->view->fileName = (in_array($status, array('all', 'undone')) ? $this->lang->execution->$status : $this->lang->execution->statusList[$status]) . $this->lang->execution->common; + $this->view->fileName = (in_array($status, array('all', 'undone')) ? $this->lang->execution->$status : $this->lang->execution->statusList[$status]) . $this->lang->executionCommon; $this->display(); }