Fix odd table formatting when editing versions

This commit is contained in:
Chris Morgan
2007-08-04 16:56:27 +00:00
committed by WineHQ
parent f9d617dac6
commit 1f8d1690af

View File

@@ -608,10 +608,13 @@ class version {
$oTableRow = new TableRow(); $oTableRow = new TableRow();
$oTableRow->SetValign("top"); $oTableRow->SetValign("top");
$oTableCell = new TableCell("Application");
$oTableCell->SetBold(true);
$oTableRow->AddCell($oTableCell);
$sOptionList = $x->make_option_list("iAppId", $this->iAppId, $sOptionList = $x->make_option_list("iAppId", $this->iAppId,
"appFamily", "appId", "appName"); "appFamily", "appId", "appName");
$oTableCell = new TableCell("Application".$sOptionList); $oTableCell = new TableCell($sOptionList);
$oTableCell->SetBold(true);
$oTableCell->SetClass("color0"); $oTableCell->SetClass("color0");
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);