summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-02-02 23:42:11 +0100
committerterry%mozilla.org <>2000-02-02 23:42:11 +0100
commita8ecf3cfc46959d830b3d86fa1a63ac07993b53a (patch)
tree5bb6094bd7b03035157723085b68ba0d137f2d7f /buglist.cgi
parent6133b82636f84fe8c0b2370a452117fbb95ec5c7 (diff)
downloadbugzilla-a8ecf3cfc46959d830b3d86fa1a63ac07993b53a.tar.gz
bugzilla-a8ecf3cfc46959d830b3d86fa1a63ac07993b53a.tar.xz
Whoops, searches of "Comment changed (before|after)" were not working
correctly.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 4c0505bc3..fc213137b 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -354,13 +354,13 @@ sub GenerateSQL {
my $table = "longdescs_$chartid";
push(@supptables, "longdescs $table");
push(@wherepart, "$table.bug_id = bugs.bug_id");
- $term = "$table.who < " . SqlQuote(SqlifyDate($v));
+ $term = "$table.bug_when < " . SqlQuote(SqlifyDate($v));
},
"^long_?desc,changedafter" => sub {
my $table = "longdescs_$chartid";
push(@supptables, "longdescs $table");
push(@wherepart, "$table.bug_id = bugs.bug_id");
- $term = "$table.who > " . SqlQuote(SqlifyDate($v));
+ $term = "$table.bug_when > " . SqlQuote(SqlifyDate($v));
},
"^long_?desc," => sub {
my $table = "longdescs_$chartid";