* finish change TASK #2051

This commit is contained in:
chujilu
2014-08-21 10:44:56 +08:00
parent f9e44c0075
commit e49f102189
6 changed files with 21 additions and 18 deletions
-6
View File
@@ -438,9 +438,6 @@ class testtask extends control
{
$actionID = $this->action->create('testtask', $taskID, 'Started', $this->post->comment);
$this->action->logHistory($actionID, $changes);
$testtask = $this->testtask->getById($taskID);
$projectActionID = $this->action->create('project', $testtask->project, 'starttesttask', '', $taskID);
}
die(js::locate($this->createLink('testtask', 'view', "taskID=$taskID"), 'parent'));
}
@@ -480,9 +477,6 @@ class testtask extends control
{
$actionID = $this->action->create('testtask', $taskID, 'Closed', $this->post->comment);
$this->action->logHistory($actionID, $changes);
$testtask = $this->testtask->getById($taskID);
$projectActionID = $this->action->create('project', $testtask->project, 'stoptesttask', '', $taskID);
}
die(js::locate($this->createLink('testtask', 'view', "taskID=$taskID"), 'parent'));
}