Module: appdb Branch: master Commit: c22d51b49310f4fad83525d76bad5f6251384901 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=c22d51b49310f4fad83525d76... Author: Alexander Nicolaysen Sørnes <alexander(a)linux-xqqm.(none)> Date: Fri Dec 4 22:58:31 2009 +0100 bug link queue: Replace app description with 'has maintainer' --- include/bugs.php | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/bugs.php b/include/bugs.php index 0a6d099..4e294a5 100644 --- a/include/bugs.php +++ b/include/bugs.php @@ -430,17 +430,17 @@ class Bug $oTableCell->SetAlign("center"); $oTableRow->AddCell($oTableCell); - $oTableRow->AddTextCell("Bug Description"); + $oTableRow->AddTextCell("Bug description"); - $oTableCell = new TableCell("Application Name"); + $oTableCell = new TableCell("Application name"); $oTableCell->SetAlign("center"); $oTableRow->AddCell($oTableCell); - $oTableCell = new TableCell("Application Description"); + $oTableCell = new TableCell("Version"); $oTableCell->SetAlign("center"); $oTableRow->AddCell($oTableCell); - $oTableCell = new TableCell("Version"); + $oTableCell = new TableCell("Has maintainer"); $oTableCell->SetAlign("center"); $oTableRow->AddCell($oTableCell); @@ -468,10 +468,10 @@ class Bug $oTableRow->AddTextCell($oApp->objectMakeLink()); - $oTableRow->AddTextCell(util_trim_description($oApp->sDescription)); - $oTableRow->AddTextCell($oVersion->objectMakeLink()); + $oTableRow->AddTextCell($oVersion->hasMaintainer() ? 'YES' : 'No'); + $oOMTableRow = new OMTableRow($oTableRow); // enable the deletion link, the objectManager will check