Commit a8ecf3cf authored by terry%mozilla.org's avatar terry%mozilla.org

Whoops, searches of "Comment changed (before|after)" were not working

correctly.
parent 6133b826
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment