Skip to content

Commit

Permalink
Hyperlink the issue ids in bug_actiongroup_page.php
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2586 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed May 27, 2004
1 parent 6628c83 commit 8971323
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bug_actiongroup_page.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: bug_actiongroup_page.php,v 1.37 2004-05-26 05:03:51 int2str Exp $
# $Id: bug_actiongroup_page.php,v 1.38 2004-05-27 23:11:00 vboctor Exp $
# --------------------------------------------------------
?>
<?php
Expand Down Expand Up @@ -102,8 +102,8 @@

foreach( $f_bug_arr as $t_bug_id ) {
$t_class = sprintf( "row-%d", ($t_i++ % 2) + 1 );
$t_bug_rows .= sprintf( "<tr class=\"%s\"> <td>%d</td> <td>%s</td> </tr>\n"
, $t_class, $t_bug_id, bug_get_field( $t_bug_id, 'summary' )
$t_bug_rows .= sprintf( "<tr class=\"%s\"> <td>%s</td> <td>%s</td> </tr>\n"
, $t_class, string_get_bug_view_link( $t_bug_id ), bug_get_field( $t_bug_id, 'summary' )
);
echo '<input type="hidden" name="bug_arr[]" value="' . $t_bug_id . '" />' . "\n";
}
Expand Down

0 comments on commit 8971323

Please sign in to comment.