]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixing a couple typoes
authorjustdave%syndicomm.com <>
Wed, 29 Aug 2001 00:55:14 +0000 (00:55 +0000)
committerjustdave%syndicomm.com <>
Wed, 29 Aug 2001 00:55:14 +0000 (00:55 +0000)
doeditvotes.cgi

index a80f4ae403bec4ae161f217d80f56b9ee33d627e..75208ce35f106d95aac749269eff4a39a05c4c2d 100755 (executable)
@@ -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();
     }