From: terry%mozilla.org <> Date: Wed, 2 Feb 2000 22:42:11 +0000 (+0000) Subject: Whoops, searches of "Comment changed (before|after)" were not working X-Git-Tag: bugzilla-2.12~398 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8ecf3cfc46959d830b3d86fa1a63ac07993b53a;p=thirdparty%2Fbugzilla.git Whoops, searches of "Comment changed (before|after)" were not working correctly. --- diff --git a/buglist.cgi b/buglist.cgi index 4c0505bc3e..fc213137b2 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";