This commit is contained in:
justdave%syndicomm.com 2001-08-28 17:55:14 +00:00
Родитель dd97fa3d10
Коммит 1296d0bf87
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -41,8 +41,8 @@ my @buglist = grep {/^[1-9][0-9]*$/} keys(%::FORM);
# If no bugs are in the buglist, let's make sure the user gets notified
# that their votes will get nuked if they continue.
if ((0 == @buglist) {
if (! defined $::FORM{'delete_all_votes'})) {
if (0 == @buglist) {
if (! defined $::FORM{'delete_all_votes'}) {
print "Content-type: text/html\n\n";
PutHeader("Remove your votes?");
print "<p>You are about to remove all of your bug votes. Are you sure you wish to remove your vote from every bug you've voted on?</p>";
@ -54,7 +54,7 @@ if ((0 == @buglist) {
PutFooter();
exit();
}
elsif ($::FORM{'delete_all_votes'} == 0)) {
elsif ($::FORM{'delete_all_votes'} == 0) {
print "Location: showvotes.cgi\n\n";
exit();
}