]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Whoops, searches of "Comment changed (before|after)" were not working
authorterry%mozilla.org <>
Wed, 2 Feb 2000 22:42:11 +0000 (22:42 +0000)
committerterry%mozilla.org <>
Wed, 2 Feb 2000 22:42:11 +0000 (22:42 +0000)
correctly.

buglist.cgi

index 4c0505bc3e88f18c50e3a485de89fd3cfd1d2715..fc213137b2af93d7d8b221d569080eb572c61176 100755 (executable)
@@ -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";