From: justdave%syndicomm.com <> Date: Sun, 8 Apr 2001 09:33:02 +0000 (+0000) Subject: Fix for bug 66014: Correct sanitycheck for the new initialowner and X-Git-Tag: bugzilla-2.12~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9725c3af95cefb7596e3eee17571b211ae8497f8;p=thirdparty%2Fbugzilla.git Fix for bug 66014: Correct sanitycheck for the new initialowner and initialqacontact fields in the components table. Patch by Matthew Tuck r= afranke, justdave --- diff --git a/sanitycheck.cgi b/sanitycheck.cgi index bcd1716a6b..2da7fde2fd 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -147,7 +147,8 @@ CrossCheck("profiles", "userid", ["votes", "who", "bug_id"], ["longdescs", "who", "bug_id"], ["namedqueries", "userid"], - ["components", "initialowner"]); + ["components", "initialowner", "value"], + ["components", "initialqacontact", "value", ["0"]]); Status("Checking passwords"); SendSQL("SELECT COUNT(*) FROM profiles WHERE cryptpassword != ENCRYPT(password, left(cryptpassword, 2))");