Commit 736549f8 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 270823: Remove failure on search 'time since owner touched bug'…

Patch for bug 270823: Remove failure on search 'time since owner touched bug' (remove linebreaks from middle join clause); patch by Joel Peshkin <bugreport@peshkin.net>, r=justdave, r=vladd, a=justdave.
parent 5ae95ca8
......@@ -852,8 +852,8 @@ sub init {
} elsif ($unit eq 'y') {
$unitinterval = 'YEAR';
}
my $cutoff = "DATE_SUB(NOW(),
INTERVAL $quantity $unitinterval)";
my $cutoff = "DATE_SUB(NOW(), " .
"INTERVAL $quantity $unitinterval)";
my $assigned_fieldid = &::GetFieldID('assigned_to');
push(@supptables, "LEFT JOIN longdescs comment_$table " .
"ON comment_$table.who = bugs.assigned_to " .
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment