From: justdave%bugzilla.org <> Date: Thu, 27 Mar 2008 18:48:27 +0000 (+0000) Subject: Bug 418068 take 3: No way to search for "date of last comment" before/after a given... X-Git-Tag: bugzilla-3.1.3~262 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5faa2cf8cf9288005d3fcaf7580aac01c54797fe;p=thirdparty%2Fbugzilla.git 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 --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 111875daca..d74f09474f 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)";