Fix version list to display missing tested release field

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-07-24 01:50:19 +00:00
committed by WineHQ
parent c9d7873b29
commit 0e7e7a0f2b

View File

@@ -1145,6 +1145,10 @@ class version {
$oTableCell->SetAlign("center"); $oTableCell->SetAlign("center");
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);
$oTableCell = new TableCell($oVersion->sTestedRelease);
$oTableCell->SetAlign("center");
$oTableRow->AddCell($oTableCell);
$oTableCell = new TableCell(testData::get_testdata_count_for_versionid($oVersion->iVersionId)); $oTableCell = new TableCell(testData::get_testdata_count_for_versionid($oVersion->iVersionId));
$oTableCell->SetAlign("center"); $oTableCell->SetAlign("center");
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);