From: justdave%syndicomm.com <> Date: Wed, 29 Aug 2001 00:55:14 +0000 (+0000) Subject: Fixing a couple typoes X-Git-Tag: bugzilla-2.14~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=073c47679819c3ff3bfd900c3b9ceeb176232432;p=thirdparty%2Fbugzilla.git Fixing a couple typoes --- diff --git a/doeditvotes.cgi b/doeditvotes.cgi index a80f4ae403..75208ce35f 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 "

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?

"; @@ -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(); }