Alexander Nicolaysen Sørnes : Fix bug link on queued items page
Module: appdb Branch: master Commit: 907ce1c928da833af007b5764b879700a108eb34 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=907ce1c928da833af007b5764... Author: Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com> Date: Fri Jan 11 01:54:17 2008 +0100 Fix bug link on queued items page --- include/bugs.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/bugs.php b/include/bugs.php index b1d7506..13b1404 100644 --- a/include/bugs.php +++ b/include/bugs.php @@ -315,7 +315,7 @@ class Bug $oTableRow = new TableRow(); $oTableRow->AddTextCell(version::fullNameLink($oRow->versionId)); - $oTableRow->AddTextCell('<a href='.BUGZILLA_ROOT.'show_bug.cgi?id='.$oRow->bug_id.'">'.$oRow->bug_id.'</a>'); + $oTableRow->AddTextCell('<a href="'.BUGZILLA_ROOT.'show_bug.cgi?id='.$oRow->bug_id.'">'.$oRow->bug_id.'</a>'); $oTableRow->AddTextCell($oBug->sBug_status); $oTableRow->AddTextCell($oBug->sResolution); $oTableRow->AddTextCell($oBug->sShort_desc);
participants (1)
-
Chris Morgan