diff options
author | travis%sedsystems.ca <> | 2005-02-11 05:34:02 +0000 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-11 05:34:02 +0000 |
commit | 28a1bb58e7a04725ffe20104f91f51088222e0c8 (patch) | |
tree | 10f61949ae93032a28a10eb2f39fa1d0feb441dc | |
parent | Bug 277723 : Add comments why checksetup uses slow code to check for spaces a... (diff) | |
download | bugzilla-28a1bb58e7a04725ffe20104f91f51088222e0c8.tar.gz bugzilla-28a1bb58e7a04725ffe20104f91f51088222e0c8.tar.bz2 bugzilla-28a1bb58e7a04725ffe20104f91f51088222e0c8.zip |
Bug 281845 : Possible to delete users who are initial QA contacts (Regression from bug 43600)
Patch by Shane H. W. Travis <travis@sedsystems.ca> r=justdave, a=justdave
-rwxr-xr-x | editusers.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editusers.cgi b/editusers.cgi index 27b3ed724..040720cb9 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -592,7 +592,7 @@ if ($action eq 'del') { SendSQL("SELECT products.name, components.name " . "FROM products, components " . - "WHERE products.id = components.id " . + "WHERE products.id = components.product_id " . " AND initialqacontact=" . DBname_to_id($user)); $found = 0; while (MoreSQLData()) { |