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 /sanitycheck.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 'sanitycheck.cgi')
-rwxr-xr-x | sanitycheck.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi index 2a51a3169..c3c415312 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -304,7 +304,7 @@ CrossCheck("profiles", "userid", ['profiles_activity', 'who'], ["bugs", "reporter", "bug_id"], ["bugs", "assigned_to", "bug_id"], - ["bugs", "qa_contact", "bug_id", ["0"]], + ["bugs", "qa_contact", "bug_id"], ["attachments", "submitter_id", "bug_id"], ['flags', 'setter_id', 'bug_id'], ['flags', 'requestee_id', 'bug_id'], @@ -322,7 +322,7 @@ CrossCheck("profiles", "userid", ["tokens", "userid"], ["user_group_map", "user_id"], ["components", "initialowner", "name"], - ["components", "initialqacontact", "name", ["0"]]); + ["components", "initialqacontact", "name"]); CrossCheck("products", "id", ["bugs", "product_id", "bug_id"], |