diff options
author | terry%mozilla.org <> | 2000-01-24 14:41:36 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-24 14:41:36 +0100 |
commit | ca924726d8e692458088267aa5fb36848654fabd (patch) | |
tree | 956427344efa23fe3bd2cc4c50eae36f08509550 /CGI.pl | |
parent | a240c91d3276266fb7a43dcbf3158f91494ff313 (diff) | |
download | bugzilla-ca924726d8e692458088267aa5fb36848654fabd.tar.gz bugzilla-ca924726d8e692458088267aa5fb36848654fabd.tar.xz |
New email code wasn't sending to people who had voted for a bug.
Added "My votes" link to footer. Other minor voting-related fixes.
Diffstat (limited to 'CGI.pl')
-rw-r--r-- | CGI.pl | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -846,6 +846,12 @@ sub GetCommandMenu { my $mybugstemplate = Param("mybugstemplate"); my %substs; $substs{'userid'} = $::COOKIE{"Bugzilla_login"}; + if (!defined $::anyvotesallowed) { + GetVersionTable(); + } + if ($::anyvotesallowed) { + $html .= qq{ | <A HREF="showvotes.cgi">My votes</A>}; + } my $mybugsurl = PerformSubsts($mybugstemplate, \%substs); $html = $html . " | <a href='$mybugsurl'>My bugs</a>"; } |