diff options
| author | justdave%syndicomm.com <> | 2001-11-03 04:05:13 +0000 |
|---|---|---|
| committer | justdave%syndicomm.com <> | 2001-11-03 04:05:13 +0000 |
| commit | 1477ad4e1ab6a71d7ed40a66314cd34471ad86f4 (patch) | |
| tree | c616dfb5458a29d6a5c2ec3fe7aaa12651094fe5 /doeditvotes.cgi | |
| parent | 530879b4097d12cf774ba0d1cfa7673981e136b4 (diff) | |
| download | bugs-1477ad4e1ab6a71d7ed40a66314cd34471ad86f4.tar bugs-1477ad4e1ab6a71d7ed40a66314cd34471ad86f4.tar.gz bugs-1477ad4e1ab6a71d7ed40a66314cd34471ad86f4.tar.bz2 bugs-1477ad4e1ab6a71d7ed40a66314cd34471ad86f4.tar.xz bugs-1477ad4e1ab6a71d7ed40a66314cd34471ad86f4.zip | |
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(); |
