diff options
author | myk%mozilla.org <> | 2002-09-30 05:14:13 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2002-09-30 05:14:13 +0200 |
commit | b66451a33b03459c574786373aaf39e7a9ef9705 (patch) | |
tree | b3db2ffd263c5e1eeac8062b6d392a9777c355f6 /sanitycheck.cgi | |
parent | 733a4f3ba362e512979ee47355850c6eb2041ac1 (diff) | |
download | bugzilla-b66451a33b03459c574786373aaf39e7a9ef9705.tar.gz bugzilla-b66451a33b03459c574786373aaf39e7a9ef9705.tar.xz |
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
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-x | sanitycheck.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi index 2798dfd2f..073fd7f19 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"); |