From b35462663da5cfe99ceea23b2b767324229351ca Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" Date: Tue, 27 Nov 2001 15:04:52 +0000 Subject: [PATCH] Bug 108312 - The mid-air collision page was only showing the most recent changes if two people comitted changes to a bug while you were viewing it. r=louie, myk --- webtools/bugzilla/CGI.pl | 2 +- webtools/bugzilla/process_bug.cgi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webtools/bugzilla/CGI.pl b/webtools/bugzilla/CGI.pl index da06191e43f..5a2b5f7cec8 100644 --- a/webtools/bugzilla/CGI.pl +++ b/webtools/bugzilla/CGI.pl @@ -1216,7 +1216,7 @@ sub DumpBugActivity { die "Invalid id: $id" unless $id=~/^\s*\d+\s*$/; if (defined $starttime) { - $datepart = "and bugs_activity.bug_when >= $starttime"; + $datepart = "and bugs_activity.bug_when > " . SqlQuote($starttime); } my $query = " SELECT IFNULL(fielddefs.description, bugs_activity.fieldid), diff --git a/webtools/bugzilla/process_bug.cgi b/webtools/bugzilla/process_bug.cgi index 9e90827f1d2..603fc9c9793 100755 --- a/webtools/bugzilla/process_bug.cgi +++ b/webtools/bugzilla/process_bug.cgi @@ -979,7 +979,7 @@ Someone else has made changes to this bug at the same time you were trying to. The changes made were:

"; - DumpBugActivity($id, $delta_ts); + DumpBugActivity($id, $::FORM{'delta_ts'}); my $longdesc = GetLongDescriptionAsHTML($id); my $longchanged = 0;