From: myk%mozilla.org <> Date: Mon, 30 Sep 2002 03:14:13 +0000 (+0000) Subject: Fix for bug 171506: Fixes bustage in sanitycheck.cgi by making it check for correct... X-Git-Tag: bugzilla-2.17.1~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b66451a33b03459c574786373aaf39e7a9ef9705;p=thirdparty%2Fbugzilla.git Fix for bug 171506: Fixes bustage in sanitycheck.cgi by making it check for correct product IDs in the flaginclusions and flagexclusions tables instead of the flagtypes table, which no longer has a product_id field. r=joel --- diff --git a/sanitycheck.cgi b/sanitycheck.cgi index 2798dfd2f9..073fd7f197 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -280,7 +280,8 @@ CrossCheck("products", "id", ["components", "product_id", "name"], ["milestones", "product_id", "value"], ["versions", "product_id", "value"], - ["flagtypes", "product_id", "name"]); + ["flaginclusions", "product_id", "type_id"], + ["flagexclusions", "product_id", "type_id"]); DateCheck("groups", "last_changed"); DateCheck("profiles", "refreshed_when");