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.


git-svn-id: svn://10.0.0.236/trunk@58462 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%mozilla.org
2000-01-24 05:41:40 +00:00
parent 738509aa57
commit 64245e9642
5 changed files with 32 additions and 6 deletions

View File

@@ -22,10 +22,18 @@
require "CGI.pl";
sub sillyness {
my $zz;
$zz = $::anyvotesallowed;
}
confirm_login();
print "Content-type: text/html\n\n";
GetVersionTable();
if (! defined $::FORM{'pwd1'}) {
PutHeader("Preferences", "Change your password and<br>other preferences",
$::COOKIE{'Bugzilla_login'});
@@ -98,10 +106,10 @@ risk any bugs), check here.</td>
<hr>
<input type=submit value=Submit>
</form>
<hr>
<a href=\"showvotes.cgi\">Review your votes</a>
<hr>
";
<hr>";
if ($::anyvotesallowed) {
print qq{<a href="showvotes.cgi">Review your votes</a><hr>\n};
}
PutFooter();
exit;
}