* Code for bug #19319.

This commit is contained in:
zhangzilong
2022-02-14 11:13:24 +08:00
parent 106447b401
commit bb828d54cf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1069,7 +1069,7 @@ class testtaskModel extends model
$testtaskPairs = array();
while($testtask = $stmt->fetch())
{
$testtaskPairs[$testtask->id] = $testtask->execution . ' / ' . $testtask->name;
$testtaskPairs[$testtask->id] = $testtask->execution . "" . $testtask->name;
}
return $testtaskPairs;
}