diff options
author | justdave%bugzilla.org <> | 2008-03-27 19:48:27 +0100 |
---|---|---|
committer | justdave%bugzilla.org <> | 2008-03-27 19:48:27 +0100 |
commit | 5faa2cf8cf9288005d3fcaf7580aac01c54797fe (patch) | |
tree | 98bdcf6f0867ae69bf4b3da9b970e6d97d901f07 /Bugzilla | |
parent | 76db56635e4277804982f04b3828a8cd88093963 (diff) | |
download | bugzilla-5faa2cf8cf9288005d3fcaf7580aac01c54797fe.tar.gz bugzilla-5faa2cf8cf9288005d3fcaf7580aac01c54797fe.tar.xz |
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
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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)"; |