summaryrefslogtreecommitdiffstats
path: root/sanitycheck.cgi
diff options
context:
space:
mode:
authormatty%chariot.net.au <>2002-10-06 00:29:20 +0200
committermatty%chariot.net.au <>2002-10-06 00:29:20 +0200
commitf50efb95e1c7462699f1179d0a62b1ee7118e67e (patch)
treedb0619528ba25e847d5f95d7cd7e3456618d4032 /sanitycheck.cgi
parente46b1a3683a943fac2b5457c1b0979e537f87601 (diff)
downloadbugzilla-f50efb95e1c7462699f1179d0a62b1ee7118e67e.tar.gz
bugzilla-f50efb95e1c7462699f1179d0a62b1ee7118e67e.tar.xz
... and also fix a bug introduced trying to unrot the general bug check rewrite, due to product IDs.
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-xsanitycheck.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi
index b3f7c25ba..286729aa5 100755
--- a/sanitycheck.cgi
+++ b/sanitycheck.cgi
@@ -591,7 +591,7 @@ BugCheck("bugs WHERE bug_status IN ('NEW', 'ASSIGNED', 'REOPENED') AND everconfi
Status("Checking votes/everconfirmed");
BugCheck("bugs, products WHERE " .
- "bugs.product = products.product AND " .
+ "bugs.product_id = products.id AND " .
"everconfirmed = 0 AND " .
"votestoconfirm <= votes",
"Bugs that have enough votes to be confirmed but haven't been");