From 89cc81c5494fd1ca4c146fec9cb52f6438752ef7 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Fri, 12 May 2017 11:12:32 +0800 Subject: [PATCH] * fix bug. --- module/testtask/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/testtask/control.php b/module/testtask/control.php index 0aa4ab1550..0d2fd98544 100644 --- a/module/testtask/control.php +++ b/module/testtask/control.php @@ -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; }