This commit is contained in:
tianshujie98
2021-03-26 16:38:34 +08:00
parent 8f76b93882
commit e4e904e002
+3 -2
View File
@@ -1200,7 +1200,7 @@ class project extends control
$this->view->actions = $this->action->getList('project', $projectID);
$this->view->project = $this->project->getByID($projectID);
$this->display('project', 'suspend');
$this->display();
}
/**
@@ -1247,6 +1247,7 @@ class project extends control
public function activate($projectID)
{
$this->loadModel('action');
$this->app->loadLang('execution');
$project = $this->project->getByID($projectID);
if(!empty($_POST))
@@ -1275,7 +1276,7 @@ class project extends control
$this->view->newEnd = $newEnd;
$this->view->project = $project;
$this->display('project', 'activate');
$this->display();
}
/**