From 1f8d1690afdb6a44df0ad46b055ddbd8403ab2b9 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sat, 4 Aug 2007 16:56:27 +0000 Subject: [PATCH] Fix odd table formatting when editing versions --- include/version.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/version.php b/include/version.php index 3f4f75c..a4f0042 100644 --- a/include/version.php +++ b/include/version.php @@ -608,10 +608,13 @@ class version { $oTableRow = new TableRow(); $oTableRow->SetValign("top"); + $oTableCell = new TableCell("Application"); + $oTableCell->SetBold(true); + $oTableRow->AddCell($oTableCell); + $sOptionList = $x->make_option_list("iAppId", $this->iAppId, "appFamily", "appId", "appName"); - $oTableCell = new TableCell("Application".$sOptionList); - $oTableCell->SetBold(true); + $oTableCell = new TableCell($sOptionList); $oTableCell->SetClass("color0"); $oTableRow->AddCell($oTableCell);