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:
@@ -394,7 +394,7 @@ class Bug
|
||||
|
||||
$oTableCell = new TableCell($this->iBug_id);
|
||||
$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);
|
||||
|
||||
$oTableCell = new TableCell($this->sBug_status);
|
||||
|
||||
Reference in New Issue
Block a user