From 1477ad4e1ab6a71d7ed40a66314cd34471ad86f4 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Sat, 3 Nov 2001 04:05:13 +0000 Subject: Fix for bug 95615: cosmetic change to clarify error message when trying to use too many votes Patch by Adam Kennedy r= justdave x2 --- doeditvotes.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doeditvotes.cgi b/doeditvotes.cgi index bcc7db629..94c36b8f4 100755 --- a/doeditvotes.cgi +++ b/doeditvotes.cgi @@ -110,7 +110,7 @@ if (scalar(@buglist)) { if ($::FORM{$id} > $max) { PutHeader("Don't overstuff!", "Illegal vote"); print "You may only use at most $max votes for a single bug in the\n"; - print "$prod product, but you are using $::FORM{$id}.\n"; + print "$prod product, but you are trying to use $::FORM{$id}.\n"; print "

Please click Back and try again.


\n"; PutFooter(); exit(); @@ -121,7 +121,7 @@ if (scalar(@buglist)) { if ($prodcount{$prod} > $::prodmaxvotes{$prod}) { PutHeader("Don't overstuff!", "Illegal vote"); print "You may only use $::prodmaxvotes{$prod} votes for bugs in the\n"; - print "$prod product, but you are using $prodcount{$prod}.\n"; + print "$prod product, but you are trying to use $prodcount{$prod}.\n"; print "

Please click Back and try again.


\n"; PutFooter(); exit(); -- cgit v1.2.3-24-g4f1b