summaryrefslogtreecommitdiffstats
path: root/doeditvotes.cgi
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-08-29 02:55:14 +0200
committerjustdave%syndicomm.com <>2001-08-29 02:55:14 +0200
commit073c47679819c3ff3bfd900c3b9ceeb176232432 (patch)
tree3e0a6d02ea045bfedee828f6475738924106a5d4 /doeditvotes.cgi
parent97505287f89aa7f4ba4584d241218abfd73a025e (diff)
downloadbugzilla-073c47679819c3ff3bfd900c3b9ceeb176232432.tar.gz
bugzilla-073c47679819c3ff3bfd900c3b9ceeb176232432.tar.xz
Fixing a couple typoes
Diffstat (limited to 'doeditvotes.cgi')
-rwxr-xr-xdoeditvotes.cgi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doeditvotes.cgi b/doeditvotes.cgi
index a80f4ae40..75208ce35 100755
--- a/doeditvotes.cgi
+++ b/doeditvotes.cgi
@@ -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();
}