From: terry%netscape.com <> Date: Wed, 27 Jan 1999 10:56:20 +0000 (+0000) Subject: Fixed error message when version is invalid. X-Git-Tag: bugzilla-2.2~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c245b99fb5a8671bcdb83eb941023316d083655;p=thirdparty%2Fbugzilla.git Fixed error message when version is invalid. --- diff --git a/backdoor.cgi b/backdoor.cgi index f4b05c6371..c556c7697a 100755 --- a/backdoor.cgi +++ b/backdoor.cgi @@ -97,7 +97,7 @@ if (lsearch($::components{$prod}, $comp) < 0) { Punt("component", $comp); } if (lsearch($::versions{$prod}, $version) < 0) { - Punt("version", $comp); + Punt("version", $version); }