summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorjake%acutex.net <>2001-11-28 00:04:52 +0100
committerjake%acutex.net <>2001-11-28 00:04:52 +0100
commit8ea8a884620e83074bd9110c8c6813d60109255b (patch)
tree64baaed372999c787dbb91928e23c79b0e932176 /CGI.pl
parent18b6bbbf06b7ce935edb5d0f4ce8237408fe399b (diff)
downloadbugzilla-8ea8a884620e83074bd9110c8c6813d60109255b.tar.gz
bugzilla-8ea8a884620e83074bd9110c8c6813d60109255b.tar.xz
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
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/CGI.pl b/CGI.pl
index da06191e4..5a2b5f7ce 100644
--- a/CGI.pl
+++ b/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),