From 5faa2cf8cf9288005d3fcaf7580aac01c54797fe Mon Sep 17 00:00:00 2001 From: "justdave%bugzilla.org" <> Date: Thu, 27 Mar 2008 18:48:27 +0000 Subject: Bug 418068 take 3: No way to search for "date of last comment" before/after a given date. Correcting a spacing issue in the SQL from the original 2 interations of this patch. r=LpSolit, a=justdave --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Search.pm') diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 111875dac..d74f09474 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1390,7 +1390,7 @@ sub _work_time_changedbefore_after { my $table = "longdescs_$$chartid"; push(@$supptables, "LEFT JOIN longdescs AS $table " . "ON $table.bug_id = bugs.bug_id " . - "AND $table.work_time <> 0" . + "AND $table.work_time <> 0 " . "AND $table.bug_when $operator " . $dbh->quote(SqlifyDate($$v)) ); $$term = "($table.bug_when IS NOT NULL)"; -- cgit v1.2.3-24-g4f1b