diff options
author | bbaetz%student.usyd.edu.au <> | 2002-03-04 07:06:19 +0100 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-03-04 07:06:19 +0100 |
commit | 71cf359f2a6fb43f6cc529fb36f41000a7fd796e (patch) | |
tree | e33490ebde8174bd05f322e34311ea4c0ed8f17f /editproducts.cgi | |
parent | e13d5c8aba26905724af6ffff0ce5d353c0ced31 (diff) | |
download | bugzilla-71cf359f2a6fb43f6cc529fb36f41000a7fd796e.tar.gz bugzilla-71cf359f2a6fb43f6cc529fb36f41000a7fd796e.tar.xz |
Bug 106377 - processmail rescanall should use lastdiffed
r=justdave, ddkilzer@theracingworld.com
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index 536102f81..c11c65db7 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -1004,7 +1004,7 @@ if ($action eq 'update') { exit; } - SendSQL("UPDATE bugs SET product=$qp WHERE product=$qpold"); + SendSQL("UPDATE bugs SET product=$qp, delta_ts=delta_ts WHERE product=$qpold"); SendSQL("UPDATE components SET program=$qp WHERE program=$qpold"); SendSQL("UPDATE products SET product=$qp WHERE product=$qpold"); SendSQL("UPDATE versions SET program=$qp WHERE program=$qpold"); |