diff options
author | mkanat%kerio.com <> | 2005-03-15 14:20:47 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-03-15 14:20:47 +0100 |
commit | 0ce44681395c0a6ef5d8a54caa8aca73728b3b25 (patch) | |
tree | e804038f1f134bf7d91da9125e45de3703c59ed0 /post_bug.cgi | |
parent | 0ab2e4bfd6429efa18c46ad76db69ecfa470e750 (diff) | |
download | bugzilla-0ce44681395c0a6ef5d8a54caa8aca73728b3b25.tar.gz bugzilla-0ce44681395c0a6ef5d8a54caa8aca73728b3b25.tar.xz |
Bug 285534: bugs.qa_contact should allow NULL
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=joel, a=justdave
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
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"); } |