summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authorjake%acutex.net <>2001-09-06 21:42:47 +0200
committerjake%acutex.net <>2001-09-06 21:42:47 +0200
commitad00b1a24a038c01a9e57a7cbace4165de958e1b (patch)
tree5fc1b53d1ff17821336c0ee87a2d4c933601e5cb /bug_form.pl
parent2027e7dcb9b953b80750b90f1e0edcf25406eeb9 (diff)
downloadbugzilla-ad00b1a24a038c01a9e57a7cbace4165de958e1b.tar.gz
bugzilla-ad00b1a24a038c01a9e57a7cbace4165de958e1b.tar.xz
Fix for bug 30597 - Hyperlinking the number of votes was causing some confusion because it was such a small link, yet the most useful. Instead, we now have a link labeled "Show votes for this bug".
Patch by Matthew Tuck <matty@chariot.net.au> r= louie@ximian.com, jake@acutex.net
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl11
1 files changed, 7 insertions, 4 deletions
diff --git a/bug_form.pl b/bug_form.pl
index d2f6cc3f4..21e9e32cf 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -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>
};
}