bug::objectGetTableRow() should reference $this and not the non-existant $oRow. Fixes bug where

buglink urls are broken due to a missing bug id.
This commit is contained in:
Tony Lambregts
2007-09-08 04:42:34 +00:00
committed by WineHQ
parent ee70aeaaa2
commit bf36c8a001

View File

@@ -394,7 +394,7 @@ class Bug
$oTableCell = new TableCell($this->iBug_id); $oTableCell = new TableCell($this->iBug_id);
$oTableCell->SetAlign("center"); $oTableCell->SetAlign("center");
$oTableCell->SetCellLink(BUGZILLA_ROOT.'show_bug.cgi?id='.$oRow->bug_id); $oTableCell->SetCellLink(BUGZILLA_ROOT.'show_bug.cgi?id='.$this->iBug_id);
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);
$oTableCell = new TableCell($this->sBug_status); $oTableCell = new TableCell($this->sBug_status);