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

correctly.


git-svn-id: svn://10.0.0.236/trunk@59521 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%mozilla.org
2000-02-02 14:42:11 +00:00
parent bddacdd64c
commit 2ac8c7cbdc

View File

@@ -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";