|
From: Ulf E. <ulf...@us...> - 2005-08-22 19:18:00
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32348 Modified Files: buglist.html Log Message: Fixes bug #1262359 - Removing bug row onclick to avoid navigating away from the bug list when ctrl-clicking --- also when USE_SEVERITY_COLOR == true Index: buglist.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/buglist.html,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- buglist.html 19 Aug 2005 12:32:56 -0000 1.13 +++ buglist.html 22 Aug 2005 19:17:52 -0000 1.14 @@ -11,7 +11,7 @@ <?php } else { ?> <?php for ($i = 0; $i < $bugcount; $i++) { ?> <?php if (USE_SEVERITY_COLOR) { ?> - <tr class="bugrow" bgcolor="<?php echo $bugs[$i]['severity_color']; ?>" onclick="viewbug(<?php echo "{$bugs[$i]['bug_link_id']}, $i"; ?>)"> + <tr class="bugrow" bgcolor="<?php echo $bugs[$i]['severity_color']; ?>"> <?php } else { ?> <tr class="bugrow<?php echo ($i % 2 != 0) ? ' alt' : ''; ?>"> <?php } ?> |