]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 30597 - Hyperlinking the number of votes was causing some confusion becau...
authorjake%acutex.net <>
Thu, 6 Sep 2001 19:42:47 +0000 (19:42 +0000)
committerjake%acutex.net <>
Thu, 6 Sep 2001 19:42:47 +0000 (19:42 +0000)
Patch by Matthew Tuck <matty@chariot.net.au>
r= louie@ximian.com, jake@acutex.net

bug_form.pl

index d2f6cc3f4525db162b33be3866d5c2bc130c26ee..21e9e32cf5e71f47fb99818a62238d537276ca17 100644 (file)
@@ -340,10 +340,13 @@ if (Param("usedependencies")) {
 if ($::prodmaxvotes{$bug{'product'}}) {
     print qq{
 <table><tr>
-<th><a href="votehelp.html">Votes</a> for bug $id:</th><td>
-<a href="showvotes.cgi?bug_id=$id">$bug{'votes'}</a>
-&nbsp;&nbsp;&nbsp;<a href="showvotes.cgi?voteon=$id">Vote for this bug</a>
-</td></tr></table>
+<th><a href="votehelp.html">Votes:</a></th>
+<td>
+$bug{'votes'}&nbsp;&nbsp;&nbsp;
+<a href="showvotes.cgi?bug_id=$id">Show votes for this bug</a>&nbsp;&nbsp;&nbsp;
+<a href="showvotes.cgi?voteon=$id">Vote for this bug</a>
+</td>
+</tr></table>
 };
 }