diff options
author | jake%acutex.net <> | 2001-09-06 19:42:47 +0000 |
---|---|---|
committer | jake%acutex.net <> | 2001-09-06 19:42:47 +0000 |
commit | ad00b1a24a038c01a9e57a7cbace4165de958e1b (patch) | |
tree | 5fc1b53d1ff17821336c0ee87a2d4c933601e5cb | |
parent | 2027e7dcb9b953b80750b90f1e0edcf25406eeb9 (diff) | |
download | bugs-ad00b1a24a038c01a9e57a7cbace4165de958e1b.tar bugs-ad00b1a24a038c01a9e57a7cbace4165de958e1b.tar.gz bugs-ad00b1a24a038c01a9e57a7cbace4165de958e1b.tar.bz2 bugs-ad00b1a24a038c01a9e57a7cbace4165de958e1b.tar.xz bugs-ad00b1a24a038c01a9e57a7cbace4165de958e1b.zip |
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
-rw-r--r-- | bug_form.pl | 11 |
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> - <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'} +<a href="showvotes.cgi?bug_id=$id">Show votes for this bug</a> +<a href="showvotes.cgi?voteon=$id">Vote for this bug</a> +</td> +</tr></table> }; } |