aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-02-02 22:42:11 +0000
committerterry%mozilla.org <>2000-02-02 22:42:11 +0000
commita8ecf3cfc46959d830b3d86fa1a63ac07993b53a (patch)
tree5bb6094bd7b03035157723085b68ba0d137f2d7f
parent6133b82636f84fe8c0b2370a452117fbb95ec5c7 (diff)
downloadbugs-a8ecf3cfc46959d830b3d86fa1a63ac07993b53a.tar
bugs-a8ecf3cfc46959d830b3d86fa1a63ac07993b53a.tar.gz
bugs-a8ecf3cfc46959d830b3d86fa1a63ac07993b53a.tar.bz2
bugs-a8ecf3cfc46959d830b3d86fa1a63ac07993b53a.tar.xz
bugs-a8ecf3cfc46959d830b3d86fa1a63ac07993b53a.zip
Whoops, searches of "Comment changed (before|after)" were not working
correctly.
-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";