]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 95615: cosmetic change to clarify error message when trying to use too...
authorjustdave%syndicomm.com <>
Sat, 3 Nov 2001 04:05:13 +0000 (04:05 +0000)
committerjustdave%syndicomm.com <>
Sat, 3 Nov 2001 04:05:13 +0000 (04:05 +0000)
Patch by Adam Kennedy <bugzilla@ali.as>
r= justdave x2

doeditvotes.cgi

index bcc7db62931651113ed09f5afc2fbed45207b7f6..94c36b8f43f425acad970791f9b66a6a97e4263f 100755 (executable)
@@ -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();