From 0ce44681395c0a6ef5d8a54caa8aca73728b3b25 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Tue, 15 Mar 2005 13:20:47 +0000 Subject: Bug 285534: bugs.qa_contact should allow NULL Patch By Max Kanat-Alexander r=joel, a=justdave --- post_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'post_bug.cgi') diff --git a/post_bug.cgi b/post_bug.cgi index bc8a0afc5..0bd3b8218 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -154,7 +154,7 @@ if (Param("useqacontact")) { $qa_contact = DBNameToIdAndCheck(trim($::FORM{'qa_contact'})); } - if (defined $qa_contact && $qa_contact != 0) { + if ($qa_contact) { $::FORM{'qa_contact'} = $qa_contact; push(@bug_fields, "qa_contact"); } -- cgit v1.2.3-24-g4f1b