From bf36c8a001c053eb06bda7de700ed12bc1f94eba Mon Sep 17 00:00:00 2001 From: Tony Lambregts Date: Sat, 8 Sep 2007 04:42:34 +0000 Subject: [PATCH] bug::objectGetTableRow() should reference $this and not the non-existant $oRow. Fixes bug where buglink urls are broken due to a missing bug id. --- include/bugs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bugs.php b/include/bugs.php index b02dbef..56420a3 100644 --- a/include/bugs.php +++ b/include/bugs.php @@ -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);