diff options
author | justdave%syndicomm.com <> | 2001-11-03 05:05:13 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-11-03 05:05:13 +0100 |
commit | 1477ad4e1ab6a71d7ed40a66314cd34471ad86f4 (patch) | |
tree | c616dfb5458a29d6a5c2ec3fe7aaa12651094fe5 /doeditvotes.cgi | |
parent | 530879b4097d12cf774ba0d1cfa7673981e136b4 (diff) | |
download | bugzilla-1477ad4e1ab6a71d7ed40a66314cd34471ad86f4.tar.gz bugzilla-1477ad4e1ab6a71d7ed40a66314cd34471ad86f4.tar.xz |
Fix for bug 95615: cosmetic change to clarify error message when trying to use too many votes
Patch by Adam Kennedy <bugzilla@ali.as>
r= justdave x2
Diffstat (limited to 'doeditvotes.cgi')
-rwxr-xr-x | doeditvotes.cgi | 4 |
1 files 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 "<tt>$prod</tt> product, but you are using $::FORM{$id}.\n"; + print "<tt>$prod</tt> product, but you are trying to use $::FORM{$id}.\n"; print "<P>Please click <b>Back</b> and try again.<hr>\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 "<tt>$prod</tt> product, but you are using $prodcount{$prod}.\n"; + print "<tt>$prod</tt> product, but you are trying to use $prodcount{$prod}.\n"; print "<P>Please click <b>Back</b> and try again.<hr>\n"; PutFooter(); exit(); |