]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Re-fix for bug 87769: the original patch checked in for this prevented any votes...
authorjustdave%syndicomm.com <>
Tue, 28 Aug 2001 16:19:16 +0000 (16:19 +0000)
committerjustdave%syndicomm.com <>
Tue, 28 Aug 2001 16:19:16 +0000 (16:19 +0000)
Patch by Christoper Aillon <caillon@returnzero.com>
r= justdave@syndicomm.com

doeditvotes.cgi

index 40d6390dd98a33a45d0cdfb428b7673ba9b08b2c..a80f4ae403bec4ae161f217d80f56b9ee33d627e 100755 (executable)
@@ -41,21 +41,23 @@ 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) && (! 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>";
-    print qq{<form action="doeditvotes.cgi" method="post">\n};
-    print qq{<p><input type="radio" name="delete_all_votes" value="1"> Yes</p>\n};
-    print qq{<p><input type="radio" name="delete_all_votes" value="0" checked="checked"> No</p>\n};
-    print qq{<p><a href="showvotes.cgi">Review your votes</a></p>\n};
-    print qq{<p><input type="submit" value="Submit"></p></form>\n};
-    PutFooter();
-    exit();
-}
-elsif ($::FORM{'delete_all_votes'} == 0) {
-    print "Location: showvotes.cgi\n\n";
-    exit();
+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>";
+        print qq{<form action="doeditvotes.cgi" method="post">\n};
+        print qq{<p><input type="radio" name="delete_all_votes" value="1"> Yes</p>\n};
+        print qq{<p><input type="radio" name="delete_all_votes" value="0" checked="checked"> No</p>\n};
+        print qq{<p><a href="showvotes.cgi">Review your votes</a></p>\n};
+        print qq{<p><input type="submit" value="Submit"></p></form>\n};
+        PutFooter();
+        exit();
+    }
+    elsif ($::FORM{'delete_all_votes'} == 0)) {
+        print "Location: showvotes.cgi\n\n";
+        exit();
+    }
 }
 
 # Call ValidateBugID on each bug ID to make sure it is a positive