summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-12-11 11:38:18 +0100
committerjustdave%syndicomm.com <>2001-12-11 11:38:18 +0100
commit0450229e1c961f1ab07134702bea163f43a2e65b (patch)
treefed82d7f6abe068590318bdaf8ce1b787fb9ba45 /process_bug.cgi
parent8177d2c0c1ed1e838494400c6daf729f259089a6 (diff)
downloadbugzilla-0450229e1c961f1ab07134702bea163f43a2e65b.tar.gz
bugzilla-0450229e1c961f1ab07134702bea163f43a2e65b.tar.xz
Fix for bug 73502: midair collision wasn't catching other bugs changing dependencies
Patch by Dave Miller r= bbaetz, jake
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi2
1 files changed, 2 insertions, 0 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index 603fc9c97..336ddafe9 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -928,6 +928,8 @@ sub LogDependencyActivity {
# Figure out what's really different...
my ($removed, $added) = DiffStrings($oldstr, $newstr);
LogActivityEntry($i,$target,$removed,$added);
+ # update timestamp on target bug so midairs will be triggered
+ SendSQL("UPDATE bugs SET delta_ts=NOW() WHERE bug_id=$i");
return 1;
}
return 0;