From 8bb8732eae8ff05aa936540e5e322dcdb6e62eda Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 5 May 2005 01:15:44 +0000 Subject: [PATCH] r78: Fixed a problem where we were checking for the wrong variable in PCV sanity checks --- newreport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newreport.php b/newreport.php index 7e80beb..0041d9f 100755 --- a/newreport.php +++ b/newreport.php @@ -78,7 +78,7 @@ if ($_POST['do'] == 'insert') // ------------------------------------------------------------------- // sanity checks - if (!$bugsys->in['pcv']) + if (!$pcv) { echo 'there was a problem selecting the product, component, or version'; exit; -- 2.22.5