From f77c3e33b6cc2ebb339d4c836d73344e19a28aef Mon Sep 17 00:00:00 2001 From: "dave%intrec.com" <> Date: Fri, 23 Feb 2001 09:04:01 +0000 Subject: Fix for bug 69879: initial owner getting set to NULL if someone was specified on the new bug form. This bug was introduced in the patch for bug 66876 (v1.29 of post_bug.cgi) --- post_bug.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/post_bug.cgi b/post_bug.cgi index ae1ba4c7c..7bc75ddc1 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -92,13 +92,13 @@ if (!defined $::FORM{'short_desc'} || trim($::FORM{'short_desc'}) eq "") { PuntTryAgain("You must enter a summary for this bug."); } -my $forceAssignedOK = 0; if ($::FORM{'assigned_to'} eq "") { SendSQL("select initialowner from components where program=" . SqlQuote($::FORM{'product'}) . " and value=" . SqlQuote($::FORM{'component'})); $::FORM{'assigned_to'} = FetchOneColumn(); - $forceAssignedOK = 1; +} else { + $::FORM{'assigned_to'} = DBNameToIdAndCheck($::FORM{'assigned_to'}); } $::FORM{'reporter'} = DBNameToIdAndCheck($::FORM{'reporter'}); -- cgit v1.2.3-24-g4f1b