* fix bug.

This commit is contained in:
wangyidong
2017-05-12 11:12:32 +08:00
parent 4e19cb494f
commit 89cc81c549
+1 -1
View File
@@ -919,7 +919,7 @@ class testtask extends control
$results = $this->testtask->getResults($runID);
$testtaskID = $this->dao->select('task')->from(TABLE_TESTRUN)->where('id')->eq($runID)->fetch('task');
$testtask = $this->dao->select('build, project, product')->from(TABLE_TESTTASK)->where('id')->eq($testtaskID)->fetch();
$testtask = $this->dao->select('id, build, project, product')->from(TABLE_TESTTASK)->where('id')->eq($testtaskID)->fetch();
$this->view->testtask = $testtask;
}