* finish task #2933.

This commit is contained in:
wangyidong
2017-02-22 16:30:53 +08:00
parent 7fd78bbb8c
commit 625948aad3
11 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ class testtask extends control
$productID = $productID ? $productID : key($products);
$projects = $this->dao->select('id, name')->from(TABLE_PROJECT)->where('id')->eq($projectID)->andWhere('deleted')->eq(0)->fetchPairs('id');
$builds = $this->dao->select('id, name')->from(TABLE_BUILD)->where('project')->eq($projectID)->andWhere('deleted')->eq(0)->fetchPairs('id');
$builds = array('trunk' => 'Trunk') + $builds;
$builds = array('trunk' => $this->lang->trunk) + $builds;
}
/* Create testtask from testtask of test.*/