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(); }