diff --git a/module/execution/control.php b/module/execution/control.php index 3a35f5ebbb..2f811cddfb 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -1230,6 +1230,13 @@ class execution extends control die(js::confirm($this->lang->execution->importPlanStory, inlink('create', "projectID=$projectID&executionID=$executionID©ExecutionID=&planID=$planID&confirm=yes"), inlink('create', "projectID=$projectID&executionID=$executionID"))); } } + + $project = $this->project->getByID($projectID); + if(!empty($project->model) and $project->model == 'waterfall') + { + $this->lang->execution->afterInfo = str_replace($this->lang->executionCommon, $this->lang->project->stage, $this->lang->execution->afterInfo); + } + $this->view->title = $this->lang->execution->tips; $this->view->tips = $this->fetch('execution', 'tips', "executionID=$executionID"); $this->view->executionID = $executionID;