From: justdave%syndicomm.com <> Date: Sat, 3 Nov 2001 04:05:13 +0000 (+0000) Subject: Fix for bug 95615: cosmetic change to clarify error message when trying to use too... X-Git-Tag: bugzilla-2.14.1~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1477ad4e1ab6a71d7ed40a66314cd34471ad86f4;p=thirdparty%2Fbugzilla.git Fix for bug 95615: cosmetic change to clarify error message when trying to use too many votes Patch by Adam Kennedy r= justdave x2 --- diff --git a/doeditvotes.cgi b/doeditvotes.cgi index bcc7db6293..94c36b8f43 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();