diff options
author | justdave%syndicomm.com <> | 2001-04-08 09:33:02 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-04-08 09:33:02 +0000 |
commit | 9725c3af95cefb7596e3eee17571b211ae8497f8 (patch) | |
tree | 1ada7c7d59cd3a31c146618d75e4b5540ae05ba9 /sanitycheck.cgi | |
parent | 01242775e0d599f02c26e68286a1360ebb04a714 (diff) | |
download | bugs-9725c3af95cefb7596e3eee17571b211ae8497f8.tar bugs-9725c3af95cefb7596e3eee17571b211ae8497f8.tar.gz bugs-9725c3af95cefb7596e3eee17571b211ae8497f8.tar.bz2 bugs-9725c3af95cefb7596e3eee17571b211ae8497f8.tar.xz bugs-9725c3af95cefb7596e3eee17571b211ae8497f8.zip |
Fix for bug 66014: Correct sanitycheck for the new initialowner and
initialqacontact fields in the components table.
Patch by Matthew Tuck <matty@chariot.net.au>
r= afranke, justdave
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 bcd1716a6..2da7fde2f 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))"); |