ChangeSet ID: 31311 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner(a)winehq.org 2007/08/04 11:56:27 Modified files: include : version.php Log message: Chris Morgan <cmorgan(a)alum.wpi.edu> Fix odd table formatting when editing versions Patch: http://cvs.winehq.org/patch.py?id=31311 Old revision New revision Changes Path 1.145 1.146 +5 -2 appdb/include/version.php Index: appdb/include/version.php diff -u -p appdb/include/version.php:1.145 appdb/include/version.php:1.146 --- appdb/include/version.php:1.145 4 Aug 2007 16:56:27 -0000 +++ appdb/include/version.php 4 Aug 2007 16:56:27 -0000 @@ -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);
participants (1)
-
WineHQ