From: dave%intrec.com <> Date: Fri, 23 Feb 2001 09:04:01 +0000 (+0000) Subject: Fix for bug 69879: initial owner getting set to NULL if someone was specified on... X-Git-Tag: bugzilla-2.12~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f77c3e33b6cc2ebb339d4c836d73344e19a28aef;p=thirdparty%2Fbugzilla.git 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) --- diff --git a/post_bug.cgi b/post_bug.cgi index ae1ba4c7c1..7bc75ddc16 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'});